__future__
模組
from __future__ import division
使用python3中的除法.
在python2除法中小數部分被截除,匯入division後變成了真正的除法:
>>>
7/32
>>>
from __future__ import division
>>>
7/32.3333333333333335
>>>
print
'abcdefg'
abcdefg
>>>
from __future__ import print_function
>>> print('abcdefg')
abcdefg
>>>
print
'abcdefg'
file "", line 1
print
'abcdefg'
^syntaxerror: invalid syntax
from __future__ import absolute_import
加入絕對引入
當需要引用自定義的python模組時,若自定義模組命名與系統標準模組命名衝突,如當前目錄下自定義了乙個time.py模組,則加入絕對引入後可以用import time來引入系統的標準time.py, 而用from pkg import time來引入當前目錄下的time.py.
python 學習筆記(二十一)
coding utf8 author liwei windows平台多程序匯入multiprocessing模組 from multiprocessing import process,queue from multiprocessing import pool import os,time,ran...
python 學習筆記(二十三)
coding utf8 author liwei import re python正則的應用,math方法判斷正則是否匹配成功 print 正則簡單用例 text hello liwei is 25 if re.match r w s w s w s d text print ok else pri...
Python學習之旅(二十二)
讀寫檔案就是請求作業系統開啟乙個檔案物件 檔案描述符 然後,通過作業系統提供的介面從這個檔案物件中讀取資料 讀檔案 或者把資料寫入這個檔案物件 寫檔案 f open d python doit hello.txt r f.read hello,world f.close 1 read 一次讀取全部檔...