a = 1 b = 2 if a < b: print("a is less than b") # This will run because 1 < 2 else: #This only runs if the condition for the if statement is not met ...
確定! 回上一頁