Advertisement
ganiyuisholaafeez

Untitled

Feb 11th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. def up_and_down(string):
  2.     case = string.lower().upper().swapcase()
  3.     return case
  4.  
  5. print(up_and_down("HELLO"))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement