Operador de índice con la declaración if y elif en python
#index operator with if and elif statement in python
name = input("What is your name?: ")
if(name[0].islower()):
name = name.capitalize()
print(name)
elif(name[0].isupper()):
print("Hellow "+name)
YEASIN ARAFAT