Advertisements
Advertisements
प्रश्न
Write a menu-driven program to add or delete stationery items. You should use a dictionary to store items and the brand.
संक्षेप में उत्तर
उत्तर
stationary = { }
while((ch == 1) or (ch == 2))
print(” 1. Add Item \n 2. Delete Item”)
ch = int(input(“Enter your choice “))
if(ch==1):
n = int(input(“Enter the number of items to be added in the stationary shop”))
for i in range(n):
item = input(“Enter an item “)
brand = input(“Enter the brand Name”)
stationary[item] = brand
print(stationary)
elif(ch == 2):
remitem = input(“Enter the item to be deleted from the shop”)
dict.pop(remitem)
print( stationary)
else:
print(“Invalid options. Type 1 to add items and 2 to remove items “)
ch = int(input(“Enter your choice :”)
Output:
- Add item
- Delete Item Enter your choice: 1
Enter the number of items to be added in the stationary shop : 2
Enter an item : Pen
Enter the brand Name : Trimax
Enter an item : Eraser
Enter the brand Name : Camlin
Pen : Trimax
Eraser : Camlin
Enter your choice : 2
Enter the item to be deleted from the shop : Eraser
Pen : Trimax
Enter your choice : 3
Invalid options. Type 1 to add items an 2 to remove items.
shaalaa.com
Introduction to Python Classes and Objects
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Which of the following are the key features of an Object-Oriented Programming language?
Which of the following are the key features of an Object-Oriented Programming language?
Functions defined inside a class: ______
Which of the following class declaration is correct?
The process of creating an object is called as: ______
What is the class?
What is instantiation?