如果列表的数字大于x,请执行某些操作

时间:2018-03-18 22:01:25

标签: python-3.x

到目前为止,我有以下列表: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")

0 个答案:

没有答案