Comments
- Lines starting at a "#" character are comments
fname = "Foo"
lname = "Foo"
age = 42
print(fname)
# This line is a comment
# The next line is some code commented out:
# print(lname)
print(age) # We can also comment here
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
fname = "Foo"
lname = "Foo"
age = 42
print(fname)
# This line is a comment
# The next line is some code commented out:
# print(lname)
print(age) # We can also comment here