Comments
One-line Comments
comment1.py
# This program displays a person's
# name and address.
print('Kate Austen')
print('123 Full Circle Drive')
print('Asheville, NC 28899')
In-line Comments
comment2.py
print('Kate Austen') # Name
print('123 Full Circle Drive') # Street address
print('Asheville, NC 28899') # City, state, and ZIP