Advertisement
Blessing988

Untitled

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