# This code will not be processed by the Python interpreter.

Comments in Python are done using the # symbol. This can be done on its own line or in-line with code to the right.

x = 10 # set x equal to 10 

# print out value of x  
print(x)