大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要为大家详细介绍了如何在python中将str字符串转换成uuid,文中示例代码介绍的非常详细,具有一定的参考价值,发现的小伙伴们可以参考一下:
创新互联公司是专业的温岭网站建设公司,温岭接单;提供成都网站建设、成都做网站,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行温岭网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!Python主要用来做什么Python主要应用于:1、Web开发;2、数据科学研究;3、网络爬虫;4、嵌入式应用开发;5、游戏开发;6、桌面应用开发。
uuid str int 之间的转换
import uudi #str 转 uuid uuid.UUID('12345678123456781234567812345678') uuid.UUID(hex='12345678123456781234567812345678') uuid.UUID('{12345678-1234-5678-1234-567812345678}') uuid.UUID('urn:uuid:12345678-1234-5678-1234-567812345678') #Out:UUID('12345678-1234-5678-1234-567812345678') uuid.UUID(fields=(0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678)) #Out:UUID('12345678-1234-5678-1234-567812345678') #int 转 uuid uuid.UUID(int=0x12345678123456781234567812345678) #Out:UUID('12345678-1234-5678-1234-567812345678') #uuid 转 str str(uuid.uuid4()) #Out:'a0565f88-b20a-4cc1-a6de-11f046bb7100' type(str(uuid.uuid4())) #Out:str python的uuid模块提供UUID类和函数uuid1(), uuid3(), uuid4(), uuid5() 来生成1, 3, 4, 5各个版本的UUID uuid.uuid1([node[, clock_seq]]) : 主机ID, 序列号, 和时间戳来生成UUID, 可保证全球范围的唯一性 uuid.uuid3(namespace, name) : 基于命名空间和名字的MD5散列值 uuid.uuid4() : 基于随机数 uuid.uuid5(namespace, name) : 基于命名空间和名字的SHA-1散列值,同uuid3
补充拓展:python字符串和time互转与时间的加减另加uuid
咱们看代码吧!
# -*-coding:utf-8 -*- __author__ = "ZJL" import uuid,time,datetime #uuid4产生32位随机字母加数字 print(str(uuid.uuid4()).replace("-","")) #uuid3产生基于名字的MD5散列值 print(str(uuid.uuid3(uuid.NAMESPACE_DNS,"username")).replace("-","")) #time转字符串 time_num = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())) print(time_num) #字符串转time t = time.strptime(time_num, '%Y-%m-%d %H:%M:%S') y,m,d,H,M,S = t[:6] print(t) print(datetime.datetime(y,m,d,H,M,S)) #时间的加减 now_time = datetime.datetime.now() #当前时间加半小时 yes_time = now_time + datetime.timedelta(hours=+0.5) #比较时间大小 if now_time>yes_time: print("ok") else: print("no") #当前时间减一天 # yes_time = now_time + datetime.timedelta(days=-1) yes_time_nyr = yes_time.strftime('%Y-%m-%d %H:%M:%S') print(yes_time_nyr)
结果:
import time, datetime #一个月前 today1 = datetime.datetime.today() astmonth = datetime.datetime(today1.year, (today1.month - 1), today1.day, today1.hour, today1.minute,today1.second)
以上就是创新互联小编为大家收集整理的如何在python中将str字符串转换成uuid,如何觉得创新互联网站的内容还不错,欢迎将创新互联网站推荐给身边好友。