My issue
It’s Not accepting the correct output.
My code
def greet(name):
return f"Hello, {name}!"
def capitalize(text):
return text.upper()
# Call the functions
name = "Alice"
final_result =greet(name)
# Display the results
print("Final Result:", final_result)
Learning course: Python with Data structures
Problem Link: CodeChef: Practical coding for everyone