What is the output of the following code:
def greet(name="User"):
print(f"Hello, {name}!")
greet()
print(f"Hello, {name}!")
greet()
What is the output of the following code:def greet(name="User"): Correct Answer Hello, User!
print(f"Hello, {name}!")
greet()
মোঃ আরিফুল ইসলাম
Feb 20, 2025