# -*- coding:utf-8-*-import time
import datetime
# 返回自紀元以來的當前時間(以秒為單位)linux
now = time.time()
print(now) #1595293695.7729151
now_datetime = datetime.datetime.now(none)
print(now_datetime) #2020-07-21 09:08:15.772915
# 格式化時間
#日期型別轉字串型別
str_now_date = now_datetime.strftime('%y-%m-%d %h:%m:%s') #注意日期格式大小寫
print(str_now_date) #2020-07-21 09:17:42
#字串型別轉日期型別
type_datetime = datetime.datetime.strptime(str_now_date,'%y-%m-%d %h:%m:%s')
print(type(type_datetime)) #
獲取當前時間和時間格式化
1.獲取當前時間 var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 m...
Python獲取系統當前時間並格式化
效果 獲取系統當前時間並轉換請求資料所需要的格式 defget time format str 獲取當前時間的時間戳 now int time.time 轉化為其他日期格式,如 y m d h m s timestruct time.localtime now strtime time.strfti...
JS獲取當前時間並格式化
var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...