在檔案」/home/work/workspace/dhc_stat/statistic/run.py」中
import os
print
os.path.abspath(os.path.join(os.path.dirname(__file__),os.pardir,'output'))
列印:」/home/work/workspace/dhc_stat/output」
說明:
__file__:當前檔案
os.path
.dirname(file): 某個檔案所在的目錄路徑
os.path
.join(a, b, c,....): 路徑構造 a/b/c
os.path
.abspath(path): 將path從相對路徑轉成絕對路徑
os.pardir: linux下相當於"../"
import time
print
time.strftime('%y-%m-%d-%h-%m-%s')
列印:2015-09-10-13-03-38
不建議使用type()
bool isinstance(object, class)
class:
1. tuple,dict,int,float,str…
2. tuple(int,str,list),滿足其一返回true
import csv
import codecs
wfp = open("/home/work/workspace/dhc_stat/output/test.csv", 'wb')
wfp.write(codecs.bom_utf8) #解決中文亂碼問題
writer = csv.writer(wfp)
writer_list = ["中國","北京"] #編碼為utf-8
writer.writerow(writer_list)
一種特殊的字串
list = [,]
jsons = json.dumps(list) #將物件encoding成json字串
list2 = json.loads(jsons) #將json字串decoding成物件
print type(jsons),jsons
print type(list2),list2
'str'> [, ]
'list'> [, ]
python教學筆記 python學習筆記(一)
1.eval 函式 eval是單詞evaluate的縮寫,就是 求.的值的意思。eval 函式的作用是把str轉換成list,dict,tuple.li 1 1,2,3 print eval li 1 di 1 print eval di 1 tu 1 2,4,6 print eval tu 1 執...
python學習筆記
coding utf 8 coding utf 8 應該像八股文一樣在每個指令碼的頭部宣告,這是個忠告 為了解決中文相容問題,同時你應該選擇支援 unicode 編碼的編輯器環境,保證在執行指令碼中的每個漢字都是使用 utf 8 編碼過的。cdays 5 exercise 3.py 求0 100之間...
Python 學習筆記
python 學習筆記 def run print running.def execute method method execute run result running.condition false test yes,is true if condition else no,is false ...