📜  如何在python代码示例中将变量定义为false

📅  最后修改于: 2022-03-11 14:46:19.655000             🧑  作者: Mango

代码示例1
# Ignore the idiot quoting from stackoverflow.com, his syntax is wrong, just as it is in the source.
a = True
b = False

if a == b:
  print("Same.")