Python2
安裝最新版本
此處記錄的是 Ubuntu Kylin 14.04 LTS 下的過程狂秘。[1] [2] [3]
打開 Terminal,輸入下述命令葫掉,獲取最新的包
$ cd /usr/src
$ sudo wget https://www.python.org/ftp/python/2.7.11/Python-2.7.11.tgz
# wget 所指地址是從https://www.python.org/downloads/release/python-2711/ 獲取的
待下載完畢后稍刀,鍵入下述命令解壓縮
$ tar xzf Python-2.7.11.tgz
解壓完畢后,依次執(zhí)行下述命令
$ cd Python-2.7.11.tgz
$ sudo ./configure --prefix=/usr
$ sudo make
$ sudo make install
完成后在命令提示符下輸入 python
校读,即可看到 Python 版本已更新
使用非 ASCII 字符(例如中文字符)[4]
請在 Python 腳本開頭輸入如下代碼
# -*- coding: utf-8 -*-
格式化字符串輸出[5] [6] [7] [8]
# 字符串輸入輸出
name = "Su Shangjun"
gender = "male"
print """
My name is %r.
I'm a %s.
""" % (name, gender) # 注意,使用 `%r` 來調(diào)試祖能,查看原始輸入是什么
# 數(shù)字輸入輸出
rawNum = raw_input("Input a number:>")
# 下一句代碼有 4 點值得注意:
# (1)長字符串換行方法:在本行末尾結(jié)束字符串并加反斜杠(\)歉秫,下一行重新開始新字符串;多參數(shù)則不必如此芯杀,只要單個參數(shù)輸入完畢即可換行輸入下一個參數(shù)
# (2)使用 int() 與 float() 將參數(shù)轉(zhuǎn)為整數(shù)/浮點數(shù)
# (3)使用控制字符串精度控制 `%.3f` 與 `%.5f`使顯示時小數(shù)點保留 3 位與 5 位精度
print "It is %d in the form of integer, "\
"and is %.3f in the form of float(3 decimal places) while"\
" %.5f in the form of float(5 decimal places)."% (
int(rawNum),
float(rawNum),
float(rawNum))
從運行腳本的命令行中獲取參數(shù)[9]
from sys import argv
文件操作[10] [11] [12]
打開文件[10] [12]
鍵入下述命令端考,使 Py 腳本打開從命令行參數(shù)中獲取文件名的文件
from sys import argv
script, srcName = argv
src = open(srcName, '[mode name]')
# 使用 'r'/'w'/'r+'/'a' 來替換 '[mode name]'
# 'r':讀
# 'w':寫,若在寫文件前已有同名文件揭厚,則直接覆蓋
# 'a' :修改却特,直接向文件尾部添加內(nèi)容
# 'r+':讀+修改(文件讀寫指針相互獨立,即讀指針默認(rèn)從頭開始筛圆,寫指針默認(rèn)指向文件尾)
# 例如裂明,假設(shè)該腳本名為 openfile.py,與腳本放在同一目錄下有一個文件名為 test.txt
# 執(zhí)行 openfile.py test.txt 到上一句結(jié)束后
# 腳本打開 text.txt 并準(zhǔn)備對其進(jìn)行操作
# 此后變量 src 即指代該文件
# 可用該變量對該文件進(jìn)行讀寫操作
其他常用讀寫命令[11] [12]
- 讀文件(直到文件尾):
read
太援,例如# 將 src 指向文件的所有內(nèi)容以字符串形式賦予變量 srcContent闽晦。例如,為 src 開了 'r'/'r+' srcContent = src.read()
- 讀取一行:
readline
提岔,例如# 從目前讀指針在文件中所處位置開始讀取一行 # 以字符串形式賦予變量 srcContent srcContent = src.read()
- 寫入:
write
仙蛉,例如# 例如 something 中已經(jīng)保存了想要寫入文件當(dāng)前寫指針指向位置的內(nèi)容。例如碱蒙,為 src 開了 'w'/'r+' # 下述命令將從目前寫指針在文件中所處位置開始荠瘪,往文件中寫入 something 中保存的內(nèi)容 somehting = "I want to test the code." src.write(something)
- 關(guān)閉文件:
close
,例如src.close() # 這條命令運行后赛惩,在重新指定前哀墓,src 不再指向之前指定的文件了,例如 test.txt
與目錄有關(guān)的文件操作[^14]
首先導(dǎo)入模塊os
:
import os
下面記錄幾個常用函數(shù)的操作:
列出目錄文件列表
函數(shù) os.listdir(<path>)
:
【輸入】字符串 <path>
注意喷兼,該函數(shù)的輸入必須是字符串篮绰,因此不能輸入/Users/username/Desktop
,而要輸入"/Users/username/Desktop"
來替換<path>
【輸出】1 個 list季惯,其中的元素與<path>
下的文件名一一對應(yīng)
【注意】函數(shù)不接受包含.
或..
形式的路徑(例如./Desktop
是不合法的輸入吠各,必須給出絕對路徑)
csv輸出
模板代碼:
import csv
self.log_fields = ['key1', 'key2', 'key3']
self.log_file = open(self.log_filename, 'wb')
self.log_writer = csv.DictWriter(self.log_file, fieldnames=self.log_fields)
self.log_writer.writeheader()
self.log_writer.writerow({
'key1':value1,
'key2':value2,
'key3':value3
})
self.log_file.close()
定義函數(shù)[8] [13]
以下代碼定義 1 個函數(shù),輸出 3 行 Hello, world. 字符串:
def my_first_fun(): #檢查(1)有無括恍邱走孽;(2)有無冒號
print "Hello, world."
def my_second_fun(arg1):
print "%s" % arg1 # 這里如果用 r,將輸出 'Hello, world.'琳状,即輸出字符串帶單引號磕瓷。參數(shù) %r 常用于調(diào)試,查看原始數(shù)據(jù)
def my_third_fun(arg):
print arg
sentence00 = 'Hello, world.'
sentence01 = """Hello, world."""
my_first_fun();
my_second_fun(sentence00)
my_third_fun(sentence01)
# 注意,在 Py 中困食,即便不加'\n'边翁,1 個 print 也會默認(rèn)輸出 1 行
進(jìn)制轉(zhuǎn)換
可以用 bin()
/oct()
/hex()
將目標(biāo)數(shù)字轉(zhuǎn)換為對應(yīng)的二進(jìn)制/八進(jìn)制/十六進(jìn)制數(shù)字
一些常用庫的簡介
-
random
:隨機數(shù)
參考資料
-
Difference in details between “make install” and “make altinstall” ?
-
鳥哥的 Linux 私房菜(基礎(chǔ)學(xué)習(xí)篇) ?