“So ändern Sie den Fall von String in Python” Code-Antworten

So ändern Sie den Fall von String in Python

a = "Hello, World!"
print(a.upper()) 

#Output: HELLO, WORLD!

print(a.lower()) 
##Output:  hello, world!
Asif Iqbal Paracha

Wie man Großbuchstaben in Kleinbuchstaben umwandelt und umgekehrt in Python umgekehrt

def swap_string():
	s=input()
	swapped_string=""
	swapped_string+=s.swapcase()
    return swapped_string
san_bt

Ähnliche Antworten wie “So ändern Sie den Fall von String in Python”

Fragen ähnlich wie “So ändern Sie den Fall von String in Python”

Weitere verwandte Antworten zu “So ändern Sie den Fall von String in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen