What does this line of code mean? Without it, my python3 http server can't understand and let the browser download an empty .py file (depend on the link to the .py file)
#! /usr/local/bin/python3
|
|
|
It's not a Python thing, it a hashbang (or shebang) line which indicates which interpreter should process the file. The rules vary but, in its simplest form, a file with the name
|
|||
|
|
|
This is not a python specific notion, see http://en.wikipedia.org/wiki/Shebang_(Unix) |
|||
|
|
|
It's the shebang/hashbang line and a Linux/UNIX thing, not Python-related at all. When executing the file, the kernel will see the Note that it's usually not a good thing to include a |
|||
|
|
|
That is not python-specific but is called Shebang and tells the operating system with which program to run this script. |
|||
|
|
|
UNIX Shebang? See |
|||
|
|