python
inserting, r --> renoving, u --> updating Please choose one of the letters: i,r,u: r hat is the item that you vant to delete? pepsi The revised list is: ['seven up', 'niranda', 'shani'] ['pepsi', "seven up', 'niranda', 'shani'] i --> inserting, r --> renoving, u --> updating Please choose one of the letters: i,r,u: i Ihat is the iten that you want to insert it? fento Ihere do you nant to insert this elenent? 3 The revised list is: ['pepsi', 'seven up', 'niranda"', "fento', 'shani'] Sample for Updating Process: ['pepsi', 'seven up', 'niranda', 'shani'] i --> inserting, r --» removing, u --> updating Please choose one of the letters: i,r,u: U How many items you wants to update? 2 What is the item that you want to change it? seven up What is the new item? juice What is the item that you want to change it? shani What is the new item? coca cola The revised list is: ['pepsi', 'juice', 'niranda', 'coca cola'] "/>
Extracted text: Pepsi company produces the following products: [pepsi, sevenup, miranda, shani]. Write a function that receives the previous list as an argument, then ask the user to enter one of the following characters (r, i, u): r => (removing), allow the user to remove only one item. i==> (inserting), allow the user to insert only one item in the intended position (the position that the user wants). u ==> (updating), allow the user to modify more than one item, where the user will enter the number of the items that will be modified, also the item that will be modified, in addition to the new modified item. Finally, let the function print the revised list. Sample for Removing Process: Sample for Inserting Process: ['pepsi', "seven up', 'niranda", "shani') i --> inserting, r --> renoving, u --> updating Please choose one of the letters: i,r,u: r hat is the item that you vant to delete? pepsi The revised list is: ['seven up', 'niranda', 'shani'] ['pepsi', "seven up', 'niranda', 'shani'] i --> inserting, r --> renoving, u --> updating Please choose one of the letters: i,r,u: i Ihat is the iten that you want to insert it? fento Ihere do you nant to insert this elenent? 3 The revised list is: ['pepsi', 'seven up', 'niranda"', "fento', 'shani'] Sample for Updating Process: ['pepsi', 'seven up', 'niranda', 'shani'] i --> inserting, r --» removing, u --> updating Please choose one of the letters: i,r,u: U How many items you wants to update? 2 What is the item that you want to change it? seven up What is the new item? juice What is the item that you want to change it? shani What is the new item? coca cola The revised list is: ['pepsi', 'juice', 'niranda', 'coca cola']