Advertisement
ancestor_tunji

#up_and_down_function

Feb 11th, 2020
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #up_and_down_function
  2. def up_and_down_function(word):
  3.     print(word.swapcase())
  4. up_and_down_function("WoRd")
  5. up_and_down_function("wied")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement