最佳答案
我只是尝试了一个简单的代码,得到一个人的名字和年龄,让他/她知道,当他们到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."