Advertisement
aneliabogeva

Blank Receipt

Jun 14th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. def print_header():
  2. print("CASH RECEIPT")
  3. print("------------------------------")
  4. def print_body():
  5. print("Charged to____________________")
  6. print("Received by___________________")
  7. def print_footer():
  8. print("------------------------------")
  9. print("\u00A9 SoftUni")
  10.  
  11. print_header()
  12. print_body()
  13. print_footer()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement