Answers for "a string starts with an uppercase python"

0

a string starts with an uppercase python

if(x[0].isupper()):
       return True
elif(x[0].islower()):
       return False
Posted by: Guest on April-29-2022

Python Answers by Framework

Browse Popular Code Answers by Language