Revesing Case Python

t = "Mr.Brown"
nt = t.swapcase()
print(nt)
#print: mR.bROWN
Silver Takana