如何使名字成为python中的变量?

时间:2018-07-03 07:40:44

标签: python

如果我要输出“ name [0] = 6”而不是“ t”怎么办?

enter image description here

2 个答案:

答案 0 :(得分:0)

print "name[0] = "+name[0] for python 2 #concatenation

print ("name[0] = "+name[0]) for python 3

答案 1 :(得分:0)

您应该尝试以下操作:

print("name[0] = 6") # will work on python2 and python3

print "name[0] = 6" # only in python2

这会使python认为它只是一个字符串,而不是变量。