标签: python if-statement
在if语句中,您显然具有:
if [statement]: [Action]
对于“语句”部分,您需要放置在那里以使其不通过,例如,此打印字是否为“ Hello,World!”:
if []: print("Hello, World!")
或
if "Will this pass?": print("Hello, World!")