Top
以前のリビジョンの文書です
a = 10 if a > 5: print("a > 5") elif a == 5: print("a == 5") else: print("a < 5") if (a > 2) and (a < 8): print("2 < a < 8")