0

割り当てはフェーズ 1 - 管理モード
ユーザーが管理モードを選択した場合、次の操作を許可する必要があります。

  1. リストに新しい製品を追加します(アイテムの数とそのコストも追加する必要があります)
  2. リストから製品を削除する
  3. アイテムの数量を変更する

    def mang (grocerystock):
    
    mangchoice=int(input("What would you like to do? \n 1):Add a new product to the list? \n 2): Remove a product from the list?  \n 3: Change the quantity of an item  \n 4): Change the price of an item  \n  5): View items and their quantity and price"))
    
    if mangchoice == 1:
        infile=open("grocery_stock.txt", 'a')
        name=input("Please enter the new product's name would you like to add:")
        quant=int(input("Please enter the new product's quantity"))
        price=float(input("Please enter the new product's price"))
        grocerystock[0]=name
        grocerystock[1]=quant
        grocerystock[2]=price
        gS=str(grocerystock)
        gs=gS.strip("[',']")
        infile.write(gs + '\n')
    if mangchoice == 2:
        namedelete=input("what item would you like to remove")
        a=open("grocery_stock.txt", 'r')
        data_list= a.readlines()
        a.close()
        print (data_list)
        del data_list[namedelete]
        b= open ("grocery_stock.txt", 'w')
        b.writelines(data_list)
        b.close()
    def intro():
    choice=(int(input("Would you like to go to Managerial mode or Shop mode?(press 1 for Managerial and 2 for shop mode, to quit press 3)")))
    
    
    if choice == 1:
        print ('lets go')
        mang(grocerystock)
    elif choice == 0 :
        print ('loser')
    
    grocerystock= ["","",""]
    
    intro()
    

これは私がこれまでに書いたすべてのコードです。削除しようとしているコードは、if mangchoice == 2 の下にあります。

4

1 に答える 1

0

Python3 ではinput、文字列を返します。に変換する必要があるようですint

namedelete = int(input("what item would you like to remove"))
于 2012-04-16T01:36:50.090 に答える