Answers for "python case of strings"

1

how to check case of string in python

string = 'iAmABoy'

for letter in string:
    print(letter)
    if letter.isupper():
        print('yes')
        break
        
o/p:-
  i
  A
  yes
  
happy coding ^^
Posted by: Guest on January-03-2021

Code answers related to "python case of strings"

Python Answers by Framework

Browse Popular Code Answers by Language