Well done!

You have completed Arguments, Parameters, and Mutability Quiz!

Quiz Question 1 of 5

In the given code, which line is responsible for calling the function print_welcome with an argument?

1  def print_welcome(name):
2    print(f"Welcome {name}!")
3
4  username = int(input("Enter new username: "))
5  print_welcome(username)

Choose the correct answer below:

Skip Quiz Review Instruction