Guest User

Untitled

a guest
Oct 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. def my_first_function(arg1, arg2):
  2. arg3 = arg1 + arg2
  3. print(f"I like {arg1} titties")
  4. print(f"I also like {arg2} butts")
  5. print(f"I like a total of {arg3} ass and titties")
  6.  
  7. print("Lets try this out")
  8. my_first_function(21, 52)
  9.  
  10. input("Press enter and type 2 numbers")
  11. my_first_function((int(input(">"))), int(input(">")))
Add Comment
Please, Sign In to add comment