使用python:
1. 分析日誌,尤其是伺服器端日誌。指令碼就是短小精悍的
2. 用來生成測試資料,比如生成隨機的10w個詞,很麻煩;如果找乙個字型檔,存在數表裡,然後用python取資料
3. 做資料發出的程式。比如用python發tcp、udp
4. 寫多執行緒。
5. 開發很少,主要是寫指令碼語言
網上找的,凌亂堆砌先
#this is the python testsys.stdout.write不自帶自動換行,一次輸出乙個字串。import urllib;
print "program is working............";
filename="**";
filehandle=urllib.urlopen(filename);
filedata=filehandle.read();
filehandle.close();
for templine in filedata:
print templine,;
print "program is over!";
python 2:使用print後加乙個逗號:print 'hello',
Python爬蟲的用途
python爬蟲是用python程式語言實現的網路爬蟲,主要用於網路資料的抓取和處理,相比於其他語言,python是一門非常適合開發網路爬蟲的程式語言,大量內建包,可以輕鬆實現網路爬蟲功能。python爬蟲可以做的事情很多,如搜尋引擎 採集資料 廣告過濾等,python爬蟲還可以用於資料分析,在資料...
Python中 的用途
在python中,不僅僅代表乘法和列表複製,還常常用於函式的實參傳遞,和形參接收中。def div a,b print a b div 1,2 這裡,號的作用是將可迭代序列拆開,作為函式的實參。另外,兩個 可以用於字典。def div a,b print a b params div params ...
python中的 和 的用途
def function with one star t print t,type t def function with two stars d print d,type d 上面定義了兩個函式,分別用了帶乙個星號和兩個星號的引數,它們是什麼意思,執行下面的 function with one s...