這裡來看看布林運算的例子,布林運算子有 or 、 and 及 not x = True y = False print(x or y) print(x and y) print(not x) #檔名:bool01.py or 表示中文「或」的意思, ...
確定! 回上一頁