Python swapcase() method Example
text1 = "pYTHON tUTORIALS"
print(text1.swapcase())
text2 = "HELLO WORLD"
print(text2.swapcase())
text3 = "welcome to itsmycode"
print(text3.swapcase())
text4 ="12345!!!"
print(text4.swapcase())
# swapcase() method
string = "thE big BROWN FoX JuMPeD oVEr thE LAZY Dog"
print(string.swapcase())
>>> THe BIG brown fOx jUmpEd OveR THe lazy dOG
t = "Mr.Brown"
nt = t.swapcase()
print(nt)