Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. def inactiveCustomers(self):
  2. for i in range(10):
  3. print("\n")
  4. look_up_SSN = input("Hvað er kennitalan hjá viðskiptavininum sem þú vilt eyða? ")
  5. found_SSN = self.__customer_service.queryCustomer(look_up_SSN)
  6. inactive_customers = self.__customer_service.cancelCustomer(look_up_SSN)
  7. print(inactive_customers)
  8. input("Ýttu á enter til að halda áfram. ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement