name=str(input(f"Enter your name: "))
if name=="Alice" or name=="Thabo":
print(f"Hello, {name}")
I want the code to display "Hello Alice" / "Hello Thabo" in a format of the first letter being capitalized, even if the user enters the name in lower case, e.g. alice/thabo
I tried using .upper
functions but that isn't working.