天天看點

Python全棧之路:Linux下的HelloWorld

直接執行

python hello.py      

指定解釋器

#!/usr/bin/env python
print "hello,world"      

給予執行權限:chmod 755 hello.py

運作腳本 ./hello.py

字元編碼

  • ASCII
  • gb2301
  • GBK
  • GB18030
  • unicode 2bytes
  • utf-8 en:1byte zh:3bytes

語言基礎

1、getpass子產品:隐藏輸入字元(終端可用)

2、三引号(”“”“”“):作用一:多行注釋,作用二:多行文本

3、循環

- for …else

- while…else

4、判斷

if…elif…else

5、格式化輸出

(1)字元串拼接+

(2)%元組

(3)format槽位

(4)format字典

6、break結束當層循環,continue跳過本次循環

7、預設編碼:utf-8