# # Anything after a '#' is ignored by Python. Use it to explain WHY, not WHAT. # print("Hello, Python") # inline comment: runs the line, ignores this text ...
';' is replaced with a new line, so it overrides the default python interpretation of ';', make sure to avoid using spaces after ';' for otherwise indents would be broken ...
Did you know Python stands out in its unique style? It uses indents instead of braces {}. The indentation gives the code a clean look and makes it easier to read. You might've seen this as well: ...