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