輸出函數:print() 示例: print('hello world') 輸入函數:input() 示例 input('等待鍵盤錄入') 判斷語句 if else 用法: if 條件 : #如果條件滿足,則執行if語句代碼塊裡面的代碼 ,否則執行else語句代碼塊裡面的代碼 示例: if 1 < ... ...
輸出函數:print() 示例: print('hello world') 輸入函數:input() 示例 input('等待鍵盤錄入') 判斷語句 if else 用法: if 條件 : #如果條件滿足,則執行if語句代碼塊裡面的代碼 ,否則執行else語句代碼塊裡面的代碼 示例: if 1 < 2: print('1大於2‘) else: print('1不大於2') 判斷語句之嵌套語句 示例: if 條件: if 條件: else: pass 判斷語句之多層判斷 示例: if 條件: pass elif 條件: pass else: pass 迴圈語句: while 迴圈 示例: n = 1 while n < 10 : #每執行一次都會重新判斷條件是否滿足,如果滿足,則繼續執行,否則退出迴圈 print(n) n = n + 1