gpt4 book ai didi

python - 错误 : 'int' object is not subscriptable - Python

转载 作者:IT老高 更新时间:2023-10-28 21:48:28 24 4
gpt4 key购买 nike

我正在尝试一段简单的代码,获取某人的姓名和年龄,并在他们 21 岁时让他/她知道...不考虑负面因素和所有这些,只是随机的。

我不断收到这个 'int' object is not subscriptable 错误。

name1 = raw_input("What's your name? ")
age1 = raw_input ("how old are you? ")
x = 0
int([x[age1]])
twentyone = 21 - x
print "Hi, " + name1+ " you will be 21 in: " + twentyone + " years."

最佳答案

当您键入 x = 0 时,它会创建一个新的 int 变量(名称)并为其分配零。

当您键入试图访问第 age1 条目的 x[age1] 时,就像 x 是一个数组一样。

关于python - 错误 : 'int' object is not subscriptable - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8220702/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com