【利用python進行資料分析】附錄A Python 學習
阿新 • • 發佈:2019-01-12
Python 是一種解析性語言,python解析器是通過“一次執行一條語句”的方式執行程式。
標準互動式python解析器可以子啊命令列通過“python”命令啟動。
">>>" 是提示符,exit()或者Ctril+D 退出。
>>> print 'Hello World!' # Hello World
執行python程式,python hello_world.py
在ipython中,%run hello_world.py
Python 按照引用傳遞,b=a; b和a訪問的資料塊是一個地方
函式,變數引入 (as 為別名)
import some_module
from some_module import f, g, PI
import some_module as sm
from some_module import f as func, PI as pi
字串 a = 'one day' b = "another day" c = """ day after day""" a[0] = 'a' # 非法,不能單獨更改某個字元
轉移字元,\X a=r'aa\bb' # r保持字串的內容
字串格式化
template = '%.2f %s are worth $%d'
template % (4.5560, 'Argentine Pesos', 1)
'4.56 Argentine Pesos are worth $1'
pass "空操作",佔位符
if x < 0:
print 'negative!'
elif x==0:
# TODO: 這個放一些程式碼
pass
else:
print 'positive!'
try/except
def attemp_flow(x)
try:
returen float(x)
except:
return x