Python is a versatile and easy-to-learn programming language. Here is a sample code block demonstrating syntax highlighting:
# This is a Python comment
def greet(name):
return f"Hello, {name}!"
if __name__ == "__main__":
name = "World"
print(greet(name))
For more information, visit the Python Documentation.