Advertisement
ancestor_tunji

Untitled

Feb 6th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. # 1
  2. def easy_money():
  3.     return(100)
  4.  
  5. result = easy_money()
  6. print(result)
  7.  
  8. def best_food():
  9.     return("Sushi")
  10. result = best_food()
  11. print(result)
  12.  
  13. def convert_to_currency(a):
  14.     return("$" + str(a))
  15. result = convert_to_currency(15)
  16. print(result)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement