@bernardamejia
One of the main reasons I fell in love with Python is its syntax. It is intuitive and allows you to write readable code quickly. This is especially important when you work in a team — it's easy to understand what the code does, even if you didn't write it.
def greet(name):
print(f"Hello, {name}!")
greet("World")