Control Flow
Reference
If Statements
if True:
print("YES THIS IS TRUE")
#> YES THIS IS TRUE
if 1 == 1:
print("YES THIS IS TRUE")
#> YES THIS IS TRUE
if False:
print("YES THIS IS TRUE")
if 1 == 2:
print("YES THIS IS TRUE")Case Statements
Last updated