一.Python基本知識 1.Python屬高階語言,所編築的是字節碼 2.一般狀態statement 終止於換行,如需使用多數行編寫,可在行末加上 \,以表延續 但在 parentheses ( ), brackets [ ] and braces { }中,換行則沒有影響 3.其他語言使用{}來圈分code,但Python 則使用 indentation(縮排) 來圈分 4.Python 使用 hash (#) symbol to start writing a comment,multi…