Answers for "index operator with if and elif statement in python"

0

index operator with if and elif statement in 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)
Posted by: Guest on February-25-2022

Code answers related to "index operator with if and elif statement in python"

Python Answers by Framework

Browse Popular Code Answers by Language