标签: python-3.x dictionary
我正在尝试打印字典,但避免使用其中一个键:值对,代码为
[(key,value) for key, value in row.items() if key is not 'key1']
但是' key1'仍然有印刷,如何解决?