time.time(
)
time.localtime(
)
time.ctime(
)
time.sleep()
和thread裡面的sleep比較像,睡眠等待。
#utc:格林威治標準時間,比北京時間早八個小時
#file_time是檔案的三個時間之一,不填引數預設是time.time(),也就是格林威治標準時間
time.gmtime(file_time)
#本地時間,其實也就是北京時間
#file_name也是時間戳格式
time.localtime(file_time)
time.mktime(time.localtime(
))
#第乙個和第二個引數可以自定義
time.strftime(
"formate"
,"預設為time.localtime()"
)
time.strptime(
"str"
,"str對應的格式"
)
import time
import dateutil.parser as parser
ctime = time.ctime(
)#將字串轉化成datetime物件
ctime = parser.parse(ctime)
print
(ctime)
三 python中的三種機制
和大多數變成語言一樣 此處略 if else if elif elif else 注意 後面的冒號和其他程式語言的不同點 例子1 剪刀石頭布遊戲 import random player int input 請輸入數字 0 剪刀 1 石頭 2 布 computer random.randint 0,...
python中time庫的使用
將time庫里的函式分成三類 a.時間獲取 time 以1970年1月1日00 00為起始開始計時所計算的時間。ctime 返回有一定格式的時間 gmtime 返回類似於時間結構體的物件,可以用來作為相關時間函式的引數使用。b 時間格式化轉換 strftime 將gmtime返回物件按照相應設定的格...
python中的三種輸入方式
python2.x中以下三個函式都支援 raw input input sys.stdin.readline raw input 將所有輸入作為字串看待,返回字串型別 input 只能接收 數字 的輸入,返回所輸入的數字的型別 int,float sys.stdin.readline 將所有輸入視為...