6 lines
189 B
Python
6 lines
189 B
Python
|
|
#The pound symbol starts a comment, anything after is is disregarded!
|
||
|
|
|
||
|
|
print("I could have code like this.") # And comments after
|
||
|
|
|
||
|
|
#print("This code won't run")\
|
||
|
|
print("This code will run")
|