import random
nums=[0]*88
estimate = False
longth = len(nums)
for a in range(longth):
nums[a]=random.sample(range(1,1024),88)
a = input('请输入目标值:')
for x in nums:
#print(x)
for y in x:
if a == y:
print(x,y)
estimate =True
if estimate == False:
print('no')
从一个88*88的二维列表里找出目标值并打印出位置
请问有什么不对的地方吗,为什么一直判定不了a==y呀?