我一直在研究用于python目的的代码,
if information is not None:
option = information.attrib.get("option_select")
increment(operatormap,presenter)
if "OPT" in option:
z = option.split('.')
if z:
print(z[-1])
给出如下输出:
2
1
1
3
4
4
im试图修改输出并将其分为两种类型:
not 1
1
1
not 1
not 1
not 1
怎么可能?有人可以帮我吗?
答案 0 :(得分:0)
print("1" if z[-1] == 1 else "not 1")
答案 1 :(得分:0)
您可以尝试
if z[-1] != 1:
print("not 1")
else:
print("1")
答案 2 :(得分:0)
也许我误解了您的问题,但是不能仅仅添加另一个if子句吗?
类似的东西:
if z[-1] == 1:
print(z[-1])
else:
print('Not 1')