python笔记第五次

时间戳、时间元组、时间字符串之间的转换

 import random
print(random.randint(1,43))
 import time 

1.将时间戳-> 时间元组

gmtime -> utc 国际标准时间
localtime -> 本地时间
72047023

 print(time.gmtime(72047023)) print(time.localtime(72047023))

2.将时间元组转为时间字符串

print(time.strftime("%Y-%m-%d %H:%M:%S",time.gmtime(0))) print(time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(0)))

3.将时间字符串转为时间元组

 print(time.strptime("2200-11-11 12:30:29","%Y-%m-%d %H:%M:%S"))

4.将时间元组转为时间戳

print(time.mktime(time.strptime("2200-11-11 12:30:29","%Y-%m-%d %H:%M:%S")))

时间戳 <-> 时间元组 <-> 时间字符串

import datetime 

datetime是time模块的一个封装

print(datetime.datetime.now())

哈希加密

 import hashlib 

md5 可以被暴力破解
code = hashlib.sha512(“123456”.encode(“utf-8”))
code.update("(#‵′)靠つ".encode(“utf-8”)) # "加盐"操作防止暴力破解
print(code.hexdigest())

json 模块

json 原本是JavaScript中的一种数据格式,类似于Python中的字典
Python中的对象 -> JSON格式的字符串 (序列化)
JSON格式的字符串 -> Python中的数据对象 (反序列化操作)

dump 导出操作 python对象-> json字符串
load 导入操作 json字符串-> python对象

import json  dic = { 'name':'zj','age':18,'tup' : ('a',1,2,3,4,True,False),}

json.dumps(obj) 字符串导出
json.dump(obj,f) 文件写入 with
open(“data.json”,“w”,encoding=“utf-8”) as f: json.dump(dic,f)

data = json.loads(’{“pi”:3.141592653}’)

print(data[“pi”]*3)

json.loads(字符串) -> python对象 json.load(文件对象) -> python对象 with
open(“data.json”,“r”,encoding=“utf-8”) as f: data = json.load(f)

print(data[“name”])

来源:https://www.icode9.com/content-1-768301.html

(0)

相关推荐