Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. print("""
  2. ---==Lawn==---
  3.  
  4. -=Inputs=-
  5. Inputted Length = """ +lawnlengthstr +"""
  6. Inputted Width = """ +lawnwidthstr +"""
  7.  
  8. -=Outputs=-
  9. Calculated Area (M²) = """ +lawnareastr +"""M²
  10.  
  11. -=Costs=-
  12. Cost Per M² = £""" +lawncoststr +"""
  13. Total Cost = £
  14. """)
  15.  
  16. print("""
  17. ---==Concrete==---
  18.  
  19. -=Inputs=-
  20. Inputted Length = """ +concretelengthstr +"""
  21. Inputted Width = """ +concretewidthstr +"""
  22.  
  23. -=Outputs=-
  24. Calculated Area (M²) = """ +concreteareastr +"""M²
  25.  
  26. -=Costs=-
  27. Cost Per M² = £""" +concretecoststr +"""
  28. Total Cost = £
  29. """)
  30.  
  31. print("""
  32. ---==Wooden Deck==---
  33.  
  34. -=Inputs=-
  35. Inputted Length = """ +woodendecklengthstr +"""
  36. Inputted Width = """ +woodendeckwidthstr +"""
  37.  
  38. -=Outputs=-
  39. Calculated Area (M²) = """ +woodendeckareastr +"""M²
  40.  
  41. -=Costs=-
  42. Cost Per M² = £""" +woodendeckcoststr +"""
  43. Total Cost = £
  44. """)
  45.  
  46. print("""
  47. ---==Rectangular Pond==---
  48.  
  49. -=Inputs=-
  50. Inputted Length = """ +rectangularpondlengthstr +"""
  51. Inputted Width = """ +rectangularpondwidthstr +"""
  52.  
  53. -=Outputs=-
  54. Calculated Area (M²) = """ +rectangularpondareastr +"""M²
  55.  
  56. -=Costs=-
  57. Cost Per M² = £""" +rectangularpondcoststr +"""
  58. Total Cost = £
  59. """)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement