MCPcopy Create free account
hub / github.com/geekcomputers/Python / customerDetails

Method customerDetails

Laundary System/code.py:23–34  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

21 self.id = id
22
23 def customerDetails(self):
24 print("The Specific Details of customer:")
25 print("customer ID: ", self.id)
26 print("customer name:", self.Name_of_customer)
27 print("customer contact no. :", self.Contact_of_customer)
28 print("customer email:", self.Email)
29 print("type of cloth", self.Type_of_cloth)
30 if self.Branded == 1:
31 a = True
32 else:
33 a = False
34 print("Branded", a)
35
36 def calculateCharge(self):
37 a = 0

Callers 1

finalDetailsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected