Question: In command line, how do I call a python script without having to type python in front of the script\'s name? Is this even possible?
python
Info
You can prepend a shebang on the first line of the script:
#!/usr/bin/env python
This will tell your current shell which command to feed the script into.