2016年7月18日 星期一

Python 的控制結構

基本控制結構:
  • Python 的註解:#
  • Python 的字串換行延續:放在字串尾端的 \
  • Python 基本判斷控制結構:
    if (判斷式):
        執行程式內容
    else:
        執行程式內容
    
  • Python 常用的比較運算字:
    運算子說明
    ==等於
    !=不等於
    >=大於等於
    <=小於等於
    >大於
    <小於
    in 有哪些項目
    and , or , not多重條件判斷

快速測試:
  1. 使用互動式指令:
    #python3
    Python 3.4.3 (default, Jan 26 2016, 02:25:35)
    [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    >>>
    
  2. 基本練習:
    >>> Hello = True
    >>> if Hello:
    ...    print("Right")
    ... else:
    ...    print("Left")
    ...
    Right