Programming Tutorials

Comments And Pound Characters in Python

By: Zed A. Shaw in python Tutorials on 2011-03-04  

Comments are very important in your programs. They are used to tell you what something does in English, and they also are used to disable parts of your program if you need to remove them temporarily. Here's how you use comments in Python:

1 # A comment, this is so you can read your program later.
2 # Anything after the # is ignored by python.
3
4 print "I could have code like this." # and the comment after is ignored
5
6 # You can also use a comment to "disable" or comment out a piece of code:
7 # print "This won't run."
8
9 print "This will run."

What You Should See

$ python ex2.py
I could have code like this.
This will run.
$





Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in python )

Latest Articles (in python)