Python Easy 1
š§ Code Challenge
def greet(name):
print(f"Hello, {name}!")
greet("Alice")
Explain what this function does. Speak clearly and use keywords.
def greet(name):
print(f"Hello, {name}!")
greet("Alice")
Explain what this function does. Speak clearly and use keywords.