Functions Deep Dive

Functions Deep Dive Quiz

Quiz

Question 1 of 46 (0 answered)
Question 1
What are name and 'Alice' called in this code?
def greet(name):     # Function definition
    return f"Hello {name}"

greet('Alice')       # Function call
What will this code output?
Last updated on