Python Syntax

Python's syntax is designed to be clean and easy to understand. Here are some key features:

Example of Python Syntax:

Python
# Example of Python syntax
x = 10
if x > 5:
    print("x is greater than 5")
else:
    print("x is not greater than 5")