Python/Basics/Test/test.py
the_world_is_flat=True
if the_world_is_flat:
print("Be careful not to fall off!")
# this is the first comment
spam = 1 # and this is the second
# ... and now a third
text = "# This is not a comment because its inside quotes!"
print("Spam : ", spam, "\nText : ", text)