Learning Circle : python #1 - ex2

This commit is contained in:
youngjin.han 2020-05-18 22:29:08 +09:00
parent 511e667d40
commit 8ccbd1f8e2
1 changed files with 9 additions and 0 deletions

View 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.")