3. Basic Python Syntax
3. Basic Python Syntax
# Example code:
# This is a comment
print("Hello, World!") # This prints "Hello, World!"
if True:
print("This is indented")
if True:
print("This is further indented")
Last updated