Comments


# marks single line comments. There are no real multi-line comments in Python, but we will see a way to have them anyway.


examples/basics/comments.py
print("hello")

# Comments for other developers

print("world") # more comments

# print("This is not printed")