“chaîne Python du nombre inférieur supérieur” Réponses codées

Programme Python pour compter le nombre de lettres minuscules et de lettres majuscules dans une chaîne.

string=raw_input("Enter string:")
count1=0
count2=0
for i in string:
      if(i.islower()):
            count1=count1+1
      elif(i.isupper()):
            count2=count2+1
print("The number of lowercase characters is:")
print(count1)
print("The number of uppercase characters is:")
print(count2)
Gentle Gorilla

chaîne Python du nombre inférieur supérieur

# count uppercase,lowercase,digits and special characters.
a=input('enter the string:')
u=l=d=s=0
for i in a :
    if i.isupper():
        u+=1
    elif i.islower():
        l+=1
    elif i.isdigit():
        d+=1
    else:
        s+=1
print('if the string is upper',u)
print('if the string is lower',l)
print('if the string is digit',d)
print('if the string is special',s)

#output:
'''
enter the string: 'Hii Buddy! How Have You BEEN , Welcome To PYTHON....
if the string is upper 17
if the string is lower 20
if the string is digit 0
if the string is special 17
'''

Gr@Y_orphan_ViLL@in##

Comment convertir les minuscules en haut en haut dans Python

a = "Hello, World!"
print(a.upper())
#output: HELLO, WORLD!
Programmer of empires

Réponses similaires à “chaîne Python du nombre inférieur supérieur”

Questions similaires à “chaîne Python du nombre inférieur supérieur”

Plus de réponses similaires à “chaîne Python du nombre inférieur supérieur” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code