x = 1
y = ['1','2']
if x/y[1] == 2:
print ('true')
else:
print ('false')
但是变量不能用列表分割而且它给出了
TypeError: unsupported operand type(s) for /: 'int' and 'str'
请帮忙。
答案 0 :(得分:1)
那是因为你试图划分一个字符串。更改代码以将y
转换为int
将解决您的问题。
x = 1
y = ['1','2']
if x/int(y[1]) == 2:
print ('true')
else:
print ('false')