Python 简写 If Else
If ... Else 在一行中
如果你只有一条语句要执行,一条用于 if,一条用于 else,你可以把它们都放在同一行。
你也可以在同一行上有多个 else 语句。
示例
一行 if else 语句,有 3 个条件
a = 330
b = 330
print("A") if a > b else print("=") if a == b else print("B")
自己尝试 »
如果你只有一条语句要执行,一条用于 if,一条用于 else,你可以把它们都放在同一行。
你也可以在同一行上有多个 else 语句。
一行 if else 语句,有 3 个条件
a = 330
b = 330
print("A") if a > b else print("=") if a == b else print("B")
自己尝试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]