如何在 Python 中为打印编写内联 if 语句?
Python 提供两种编写内联 if 语句的方法。它们是
1. if 条件: 语句
2. s1 if 条件 else s2
请注意,第二种类型的 if 不能在没有 else 的情况下使用。现在,你也可以将它们内联用于 print 语句。例如,
a = True if a: print("Hello")
这将输出
Hello
a = False print("True" if a else "False")
这将输出
False
广告
Python 提供两种编写内联 if 语句的方法。它们是
1. if 条件: 语句
2. s1 if 条件 else s2
请注意,第二种类型的 if 不能在没有 else 的情况下使用。现在,你也可以将它们内联用于 print 语句。例如,
a = True if a: print("Hello")
这将输出
Hello
a = False print("True" if a else "False")
这将输出
False