# 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.") # This will run. 发现一个问题,#号前面如果一个空格总会提示语法是有问题的,但运行没问题,哈哈 看着不舒服
# 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.") # This will run. 发现一个问题,#号前面如果一个空格总会提示语法是有问题的,但运行没问题,哈哈 看着不舒服