From 2ba8330e521b711501cb660c7c9a2b12e6bce0b8 Mon Sep 17 00:00:00 2001 From: sweetheart Date: Thu, 11 Aug 2022 20:14:50 -0400 Subject: [PATCH] NEW UPDATE: README.rst --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index d261c26..cb39e68 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,7 @@ First, construct a ``Customer`` object and set the customer's address: .. code-block:: python - customer = Customer('Donald', 'Trump', 'donald@whitehouse.gov', '2024561111') + customer = Customer('Joseph', 'Biden', 'president@whitehouse.gov', '2024561111') address = Address('700 Pennsylvania Avenue NW', 'Washington', 'DC', '20408') Then, find a store that will deliver to the address. @@ -73,6 +73,7 @@ Wrap your credit card information in a ``PaymentObject``: .. code-block:: python + # Card information - Card Number, Expiration Date, Security code, and Zip code card = PaymentObject('4100123422343234', '0115', '777', '90210') And that's it! Now you can place your order.