Posted in Python onMarch 03, 2020
我就废话不多说了,还是直接看代码吧,希望对你有帮助!
import uuid def getUUID(): return "".join(str(uuid.uuid4()).split("-")).upper()
补充拓展:随机产生32位随机数
1.通过uuid
UUID.randomUUID().toString()这个方法可以得到32位数字和四个“-”穿插在其中
再调用
.replace("-","")得到32位随机数(注意:这里得到的32位随机数是数字加字母的
2、产生32纯数字
Random rand = new Random(); StringBuffer sb=new StringBuffer(); for (int i=1;i<=32;i++){ int randNum = rand.nextInt(9)+1; String num=randNum+""; sb=sb.append(num); } String random=String.valueOf(sb);
以上这篇python生成大写32位uuid代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
python生成大写32位uuid代码
- Author -
金字塔的旅行声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@