[Solved] Accessing a function from a module

EDIT: You’re actually not having a python issue but a bash one. You’re running your python script as if it were bash (hence the ‘from: can’t read from’), did you put #!/usr/bin/env python at the beginning of the file you’re running (not print_text.py, the other one)? You could alternatively call it that way: python myfile.py … Read more