到目前为止,我有以下列表:mylist = [[4, 7, 3], [8, 4, 2], [5, 4, 6], [5, 3, 8]]
有可能做这样的事情:
"如果mylist的数字大于9,则打印否
如果mylist的数字介于1到9之间,请打印"是"。"
我尝试使用的方法出错:TypeError: '>=' not supported between instances of 'list' and 'int'
以下是代码:
for number in mylist:
if all(i >= 9 for i in mylist):
print ("no")
else:
print("yes")