猫史档案馆


【Python作品分享】新的作品【作品秀】

用户:L0_0L0_0查看:0 回复:0 评论:0 创建时间:2020-12-26T12:53:46


【作品展示】

center_image

 

【作品介绍】

密码生成器让你能用单词、数字和符号来创建强大的密码。当运行这个程序,它会生成一个密码,并显示在屏幕上。你可以要求程序继续生成新的密码,直到获得满意的为止。

 

【作品源代码】

import random
import string

adjectives = ['sleepy', 'slow', '喵elly', 'wet', 'fat', 'red', 'orange', 'yellow', 'green', 'blue', 'purple', 'fluffy', 'white', 'proud', 'brave']

nouns = ['apple', 'dinosour', 'ball', 'toaster', 'goat', 'dragon', 'hammer', 'duck', 'panda']

print('Welcome to Password Picker!')

while True:
    adjective = random.choice(adjectives)
    noun = random.choice(nouns)
    number=random.randrange(0,100)
    special_char = random.choice(string.punctuation)

    password = adjective + noun + str(number) + special_char
    print('Your new password is: %s' % password)

    responce = input('Would you like another password? Type y or n:')
    if responce == 'n':
        break

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页