请仔细阅读下面6行代码,请判断,代码运行后打印的结果应该是No,对吗?( )
a = all([1,2,3]) b = any([3,2,1]) if a == b : print('Yes') else: print('No')