1.解釋器路徑 2.編碼 1.ascill 00000000 (8個位表示) 缺點:表示不了英文 2.unicode 0000000000000000+ (至少16位表示) 缺點:消耗記憶體,當表示位不需要16位以上,造成多餘記憶體消耗 Python3 無需關註 Python2 每個文件中只要出現中文, ...
1.解釋器路徑
#!/usr/bin/env python
2.編碼
# -*- coding:utf8 -*-
1.ascill ---00000000 (8個位表示)
缺點:表示不了英文
2.unicode ---0000000000000000+ (至少16位表示)
缺點:消耗記憶體,當表示位不需要16位以上,造成多餘記憶體消耗
- 3.utf-8 ---能用多少表示就是用多少表示
Python3 無需關註
Python2 每個文件中只要出現中文,頭部必須加
3.變數名
- 字母
- 數字
- 下劃線
三元素組成變數
- 不能以字母開頭
- 不能是關鍵字('and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield')
- 最好不要和python內置的函數名重覆
4.推薦編程軟體
Pycharm