python – TypeError:’float’对象不可订阅

PizzaChange=float(input("What would you like the new price for all standard pizzas to be? "))      
PriceList[0][1][2][3][4][5][6]=[PizzaChange]  
PriceList[7][8][9][10][11]=[PizzaChange+3]

基本上我有一个输入,用户将输入一个数值(浮点输入),然后它将所有这些上述列表索引设置为该值.出于某种原因,我无法在不提出问题的情况下设置它们:

TypeError: 'float' object is not subscriptable

错误.我做错了什么,或者我只是以错误的方式看待它?

解决方法:

PriceList [0]是一个浮点数. PriceList [0] [1]试图访问float的第一个元素.相反,做

PriceList[0] = PriceList[1] = ...code omitted... = PriceList[6] = PizzaChange

要么

PriceList[0:7] = [PizzaChange]*7
上一篇:在Python中选择一系列列


下一篇:如何在node.js中为MongoDB索引指定javascript对象中属性的顺序?