您还可以使用 python 三元运算符。在您的示例中,这可能对您有所帮助。您也可以进一步扩展相同的内容。#if X is None, do nothing>>> x = ''>>> x if x and x>0 else None#if x is not None, print it>>> x = 1>>> x if x and x>0 else None1处理字符串值>>> x = 'hello'>>> x if x and len(x)>0 else None'hello'>>> x = ''>>> x if x and len(x)>0 else None>>>