How to make a Python Comment
The csharp, pound, number sign
aka -> #
# is the python comment character
example:
def helloworld():
print "Hello World\n" # this print the standard Hello World
helloworld()
aka -> #
# is the python comment character
example:
def helloworld():
print "Hello World\n" # this print the standard Hello World
helloworld()
Comments