Advertisement
simeonshopov

Blank Receipt (functions/book0

Nov 13th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.42 KB | None | 0 0
  1. def print_receipt_header():
  2.   print("CASH RECEIPT")
  3.   print("------------------------------")
  4.  
  5. def print_receipt_body():
  6.   print("Charged to____________________")
  7.   print("Received by___________________")
  8.  
  9. def print_receipt_footer():
  10.   print("------------------------------")
  11.   print("(c) SoftUni")
  12.  
  13. def print_receipt():
  14.   print_receipt_header()
  15.   print_receipt_body()
  16.   print_receipt_footer()
  17.  
  18. print_receipt()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement