Haha, still not getting the hang of this, I am afraid. I have written a script:
#!/usr/bin/env python
print ("Hello, world!")
name = input("What is your name? ")
print ("Hello, " + name + "!")
I have saved it as hello.py. And I try to make it executable in terminal:
chmod a+x hello.py
That, however, leads to following error message:
chmod: cannot access `hello.py': No such file or directory
Why is that?