xxxxxxxxxx
def reverse_words_order_and_swap_cases(sentence):
words = sentence.split(' ')
reverse_sentence = ' '.join(reversed(words)).swapcase()
return reverse_sentence
xxxxxxxxxx
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())
xxxxxxxxxx
# swapcase() method
string = "thE big BROWN FoX JuMPeD oVEr thE LAZY Dog"
print(string.swapcase())
>>> THe BIG brown fOx jUmpEd OveR THe lazy dOG