Day03-Comments, Escape Sequence and Print Statement
Comments:
Comments can be used to explain Python code. It can be used to make the code more readable. It can also be used to prevent execution when testing code.
Comments starts with a #, and Python will ignore them:
print("This is a print statement ...
codingsplash.hashnode.dev4 min read