我目前的行长太长了:
if the_client.mismatched['NextGenName'] != the_client.mismatched['XfinName'] and the_client.mismatched['XfinName'] != None:
是否可以将其分为多行?
答案 0 :(得分:1)
您可以在由括号
分组的表达式中添加换行符if (the_client.mismatched['NextGenName'] != the_client.mismatched['XfinName']
and the_client.mismatched['XfinName'] != None):
pass