-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomer_data.py
More file actions
31 lines (31 loc) · 1.45 KB
/
customer_data.py
File metadata and controls
31 lines (31 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
customer_data = {
"John Doe": {"Account ID": "A0001",
"Email": "johndoedoe@gmail.com",
"Payment Method": {"Visa": "4545 7676 9988 5400",
"Apple Pay": "5454 6677 8899 0054",
"Amex": "7867 5675 4740 7623"},
"Address": "123 Sesame Street #03-12",
"Mobile No.": "98765432"
},
"Jane Doe": {"Account ID": "A0002",
"Email": "janejanedoe@outlook.com",
"Payment Method": {"Visa": "7766 8855 7744 3322",
"Amex": "9087 6754 1234 8765"},
"Address": "321 Apple Rd #03-02",
"Mobile No.": "91234567"
},
"Sally Tan": {"Account ID": "A0003",
"Email": "tansallyt@gmail.com",
"Payment Method": {"Apple Pay": "3344 2222 5544 7711",
"Visa": "4455 3322 6655 7780"},
"Address": "456 Pear Drive #07-02",
"Mobile No.": "87654903"
},
"Harold Ong": {"Account ID": "A0004",
"Email": "ongharryold@yahoo.com",
"Payment Method": {"Visa": "7766 5456 7879 0023",
"Amex": "8734 6547 6790 0796"},
"Address": "34 Pirate Cove #09-45",
"Mobile No.": "87903475"
}
}