Learning Circle : python #1 - ex2
This commit is contained in:
parent
511e667d40
commit
8ccbd1f8e2
1 changed files with 9 additions and 0 deletions
9
youngjin.han/python-the-hard-way/ex2.py
Normal file
9
youngjin.han/python-the-hard-way/ex2.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
# A comment, this is so you can read your program later.
|
||||
# Anything after the # is ignored by python.
|
||||
|
||||
print("I could have code like this.") # and the comment after is ignored
|
||||
|
||||
# You can also use a comment to "disable" or comment out code:
|
||||
# print("This won't run.")
|
||||
|
||||
print("This will run.")
|
Loading…
Reference in a new issue