demo_ref_string_swapcase.py:
txt = "Hello My Name Is PETER" x = txt.swapcase() print(x)
➜ begtut>python demo_string_swapcase.py
hELLO mY nAME iS peter