Answers for "all character uppercase and lowercase python"

5

converting capital letters to lowercase and viceversa in python

s=input()
new_str=""
for i in range (len(s)):
    if s[i].isupper():
        new_str+=s[i].lower()
    elif s[i].islower():
        new_str+=s[i].upper()
    else:
        new_str+=s[i]
print(new_str)
Posted by: Guest on April-11-2020
0

python - how many letters are capital in a string

def n_upper_chars(string):
    return sum(map(str.isupper, string))
Posted by: Guest on June-08-2021

Code answers related to "all character uppercase and lowercase python"

Python Answers by Framework

Browse Popular Code Answers by Language