1. 程式人生 > >python syntax error語法錯誤

python syntax error語法錯誤

1.    print(print)   TypeError: 'int' object is not callable

print = 3
print(print)

2.coding : utf-8
               ^
SyntaxError: invalid syntax

3.表示式if ...else語句
    縮排 IndentationError: expected an indented block
                                ^
    IndentationError: unindent does not match any outer indentation level
    SyntaxError: invalid syntax 語法錯誤
    tab != 4個空格
    
    縮排級別必須保持一致

註釋
    單行註釋 用#
    多行註釋用三個單引號或三個雙引號 '''被註釋的內容'''

UTF-8 = unicode 的擴充套件集,可變長的字元編碼集   
    Assic -->Gb2312 ->gbk1.0-->gb18030
    Assic -->unicode -->utf-8   /utf-16     
    Python2.x == Assic 預設編碼
        #!-*- coding:utf-8 -*-
        #coding:utf-8       
    python3.x == unicode預設編碼
      
    unicode 是向下相容gb2312 , gbk