def greet(name):
    return f'Hello {name}!'

print(greet('world'))

ls