QI: write a full python program to process the orders of a Fashion
shop, the order contains the following information:
1- Name of the person who request an order.
2-Phone number of the person who requested the order.
3- Name of the order
4- Is the order delivery or collect from the fashion shop?
Note: the orders are served according to arrival of the order.
name=input("Enter name of the person who request order: ")
phoneNumber=input("Enter phone number of the person who requested the order: ")
orderName=input("Enter name of the order: ")
get=input("Enter whether the order delivery or collect from the fashion shop: ")
print("Customer's name: ",name)
print("Customer's phone number: ",phoneNumber)
print("Order name: ",orderName)
print("The order is ",get)
Comments
Leave a comment