我是靠谱客的博主 危机方盒,最近开发中收集的这篇文章主要介绍python随机生成三位数字_五种方法实现python3-随机生成10位包含数字和字母的密码...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

方法一:

知识点:random.sample(sequence, k) 从指定序列中随机获取指定长度的片断

import random,string

num=string.ascii_letters+string.digits

print ( "".join(random.sample(num,10)) )

方法二:

知识点:random.choice(sequence) 从序列中获取一个随机元素

import random,string

passwd=""

num=string.ascii_letters+string.digits

for i in range(10):

passwd+=random.choice(num)

print (passwd)

方法三:

知识点:random.randint(a,b) 用于生成一个指定范围内的整数

import random,string

passwd = []

letters = string.ascii_letters + string.digits

length = len(letters)

for i in range(10):

letter = letters[random.randint(0,length - 1)]

passwd.append(letter)

print("".join(passwd))

方法四:

列表、random.choice()、 random.randint()

import random

import string

passwd = []

for i in range(10):

if random.randint(0,1):

letter = random.choice(string.ascii_letters)

passwd.append(letter)

else:

letter = random.choice(string.digits)

passwd.append(letter)

print("".join(passwd))

方法五:

知识点:推导列表、random.choice()、 random.randint()

import random,string

推导列表1:

print ("".join([random.choice(string.ascii_letters)

if random.randint(0,1)

else random.choice(string.digits)

for i in range(10)]))

推导列表2:

print ([random.choice(string.ascii_letters+string.digits)

for i in range(10)])

原文地址:https://www.cnblogs.com/xxpythonxx/p/12589486.html

最后

以上就是危机方盒为你收集整理的python随机生成三位数字_五种方法实现python3-随机生成10位包含数字和字母的密码...的全部内容,希望文章能够帮你解决python随机生成三位数字_五种方法实现python3-随机生成10位包含数字和字母的密码...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部