class ItemToPurchase: def __init__(self, name='none', price=0, quantity=0, description='none'): self.item_name=name self.item_description=description self.item_price=price self.item_quantity=quantity def print_item_description(self): print('%s: %s' % (self.item_name, self.item_description)) class ShoppingCart: # constructor to initialize the shopping cart def __init__(self, customer_name = 'none', current_date = 'January 1, 2016', cart_items = []): self.customer_name = customer_name self.current_date = current_date self.cart_items = cart_items # method to add an item to the shopping cart def add_item(self, itemToPurchase): self.cart_items.append(itemToPurchase) # method to remove an item from the shopping cart def remove_item(self, itemName): tremove_item = False # loop to find the item in the cart for item in self.cart_items: if item.item_name == itemName: self.cart_items.remove(item) tremove_item = True break # item not found if not tremove_item: print('Item not found in the cart. Nothing removed') # method to modify an item's quantity in the shopping cart def modify_item(self, itemToPurchase): tmodify_item = False # loop to find an item for i in range(len(self.cart_items)): if self.cart_items[i].item_name == itemToPurchase.item_name: tmodify_item = True self.cart_items[i].item_quantity = itemToPurchase.item_quantity break # item not found if not tmodify_item: print('Item not found in the cart. Nothing modified') # method to return the total quantity of all items in the shopping cart def get_num_items_in_cart(self): num_items = 0 for item in self.cart_items: num_items = num_items + item.item_quantity return num_items # method to return the total cost of all items in the shopping cart def get_cost_of_cart(self): total_cost = 0 cost = 0 for item in self.cart_items: cost = (item.item_quantity * item.item_price) total_cost += cost return total_cost # method to print the total cost of the cart def print_total(self): total_cost = self.get_cost_of_cart() if (total_cost == 0): print('SHOPPING CART IS EMPTY') else: print('{}\'s Shopping Cart - {}'.format(self.customer_name, self.current_date)) print('Number of Items: %d\n' %self.get_num_items_in_cart()) for item in self.cart_items: total = item.item_price * item.item_quantity print('%s %d @ $%d = $%d' % (item.item_name, item.item_quantity, item.item_price, total)) print('\nTotal: $%d' %(total_cost)) # method to print the item's description def print_descriptions(self): if len(self.cart_items) == 0: print('SHOPPING CART IS EMPTY') else: print('{}\'s Shopping Cart - {}'.format(self.customer_name, self.current_date)) print('\nItem Descriptions') for item in self.cart_items: item.print_item_description() # method to display the menu options and based on user's choice perform the operation def print_menu(newCart): customer_Cart = newCart menu = ('\nMENU\n' 'a - Add item to cart\n' 'r - Remove item from the cart\n' 'c - Change item quantity\n' "i - Output item's descriptions\n" 'o - Output shopping cart\n' 'q - Quit\n') command = '' while(command != 'q'): print(menu) command = input('Choose an option:') while(command != 'a' and command != 'o' and command != 'i' and command != 'q' and command != 'r' and command != 'c'): command = input('Choose an option:\n') if(command == 'a'): print("\nADD ITEM TO CART") item_name = input('Enter the item name:\n') item_description = input('Enter the item description:\n') item_price = int(input('Enter the item price:\n')) item_quantity = int(input('Enter the item quantity:\n')) itemtoPurchase = ItemToPurchase(item_name, item_price, item_quantity, item_description) customer_Cart.add_item(itemtoPurchase) elif(command == 'o'): print('\nOUTPUT SHOPPING CART') customer_Cart.print_total() elif(command == 'i'): print('\nOUTPUT ITEMS\' DESCRIPTIONS') customer_Cart.print_descriptions() elif(command == 'r'): print('REMOVE ITEM FROM CART') itemName = input('Enter the name of the item to remove :\n') customer_Cart.remove_item(itemName) elif(command == 'c'): print('\nCHANGE ITEM QUANTITY') itemName = input('Enter the name of the item :\n') qty = int(input('Enter the new quantity :\n')) itemToPurchase = ItemToPurchase(itemName,0,qty) customer_Cart.modify_item(itemToPurchase) if __name__ == "__main__": customer_name = input("Enter customer's name:\n") current_date = input("Enter today's date:\n") print("\nCustomer name: %s" %customer_name) print("Today's date: %s" %current_date) newCart = ShoppingCart(customer_name, current_date) print_menu(newCart) #end of program
Write, Run & Share Python code online using OneCompiler's Python online compiler for free. It's one of the robust, feature-rich online compilers for python language, supporting both the versions which are Python 3 and Python 2.7. Getting started with the OneCompiler's Python editor is easy and fast. The editor shows sample boilerplate code when you choose language as Python or Python2 and start coding.
OneCompiler's python online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample python program which takes name as input and print your name with hello.
import sys
name = sys.stdin.readline()
print("Hello "+ name)
Python is a very popular general-purpose programming language which was created by Guido van Rossum, and released in 1991. It is very popular for web development and you can build almost anything like mobile apps, web apps, tools, data analytics, machine learning etc. It is designed to be simple and easy like english language. It's is highly productive and efficient making it a very popular language.
When ever you want to perform a set of operations based on a condition IF-ELSE is used.
if conditional-expression
#code
elif conditional-expression
#code
else:
#code
Indentation is very important in Python, make sure the indentation is followed correctly
For loop is used to iterate over arrays(list, tuple, set, dictionary) or strings.
mylist=("Iphone","Pixel","Samsung")
for i in mylist:
print(i)
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while condition
#code
There are four types of collections in Python.
List is a collection which is ordered and can be changed. Lists are specified in square brackets.
mylist=["iPhone","Pixel","Samsung"]
print(mylist)
Tuple is a collection which is ordered and can not be changed. Tuples are specified in round brackets.
myTuple=("iPhone","Pixel","Samsung")
print(myTuple)
Below throws an error if you assign another value to tuple again.
myTuple=("iPhone","Pixel","Samsung")
print(myTuple)
myTuple[1]="onePlus"
print(myTuple)
Set is a collection which is unordered and unindexed. Sets are specified in curly brackets.
myset = {"iPhone","Pixel","Samsung"}
print(myset)
Dictionary is a collection of key value pairs which is unordered, can be changed, and indexed. They are written in curly brackets with key - value pairs.
mydict = {
"brand" :"iPhone",
"model": "iPhone 11"
}
print(mydict)
Following are the libraries supported by OneCompiler's Python compiler
Name | Description |
---|---|
NumPy | NumPy python library helps users to work on arrays with ease |
SciPy | SciPy is a scientific computation library which depends on NumPy for convenient and fast N-dimensional array manipulation |
SKLearn/Scikit-learn | Scikit-learn or Scikit-learn is the most useful library for machine learning in Python |
Pandas | Pandas is the most efficient Python library for data manipulation and analysis |
DOcplex | DOcplex is IBM Decision Optimization CPLEX Modeling for Python, is a library composed of Mathematical Programming Modeling and Constraint Programming Modeling |