python生成隨機字串方法 random模組

2021-09-11 08:41:52 字數 2270 閱讀 2882

方法一,大小寫字母+數字:

import random

import string

ran_str = ''.join(random.sample(string.ascii_letters + string.digits, 8))

print ran_str

方法二,大小寫字母+數字+特殊字元:

應用python random標準庫做乙個隨機生成密碼的程式,可以隨機生成任意多個字元。(基於python2.7,如果是python3需要修改下)

#-*-coding:utf-8 -*-

import random

import string

import sys

#儲存大小寫字母和數字,特殊字元列表

str = [chr(i) for i in range(65,91)] #65-91對應字元a-z

str = [chr(i) for i in range(97,123)] #a-z

number = [chr(i) for i in range(48,58)] #0-9

#特殊字串列表獲取有點不同

initspecial = string.punctuation #這個函式獲取到全部特殊字元,結果為字串形式

special = #定義乙個空列表

#製作特殊符號列表

for i in initspecial:

total = str + str + number + special

#print total

choices = ['6','8','10','16']

def randompassword(your_choice):

if your_choice in choices:

passwordli = random.sample(total,int(your_choice)) ##sample函式作用是取幾個列表裡的值並返回乙個新列表,此處得到的是列表需要轉換為字串顯示出來

passwordst = ''.join(passwordli) #現在得到的是轉換後的字串 『』是分隔符,裡面可以為; : . 等等

print "\033[32m生成的\033[0m" + your_choice + "\033[32m位數密碼為:\033[0m\n" + passwordst

else:

print "\033[31m請輸入指定位數(6,8,10,16) \033[0m"

if __name__ == '__main__':

while true:

choice = raw_input("\033[33m請輸入你要得到隨機密碼的位數:(6,8,10,16),或輸入q退出\033[0m\n")

if choice != 'q': #輸入q則退出迴圈

randompassword(choice) #執行函式

else:

break

方法三,字母+數字:

#!/usr/bin/env python

# -*- coding=utf-8 -*-

import random, string #匯入random和string模組

def genpassword(length):

#隨機出數字的個數

numofnum = random.randint(1,length-1)

numofletter = length - numofnum

#選中numofnum個數字

slcnum = [random.choice(string.digits) for i in range(numofnum)]

#選中numofletter個字母

slcletter = [random.choice(string.ascii_letters) for i in range(numofletter)]

#打亂組合

slcchar = slcnum + slcletter

random.shuffle(slcchar)

#生成隨機密碼

getpwd = ''.join([i for i in slcchar])

return getpwd

if __name__ == '__main__':

print genpassword(6)

python生成隨機字串

encoding utf 8 import random import string 以追加方式開啟檔案,即保證後寫入的內容不會將之前的內容覆蓋 with open txt1.txt a as f 生產20000條字串 for i in range 20000 生成乙個隨機數 x random.ra...

Python隨機生成字串

背景 將不同型別的字串 大小寫字母 數字 特殊字元 中文 隨機放在一起,可以指定不同型別字串長度。如,全為大寫字母 15個數字 大小寫字母 數字 特殊字元 中文各1個 環境 windows7 python3.6.6 import string import random class randomst...

python生成隨機日期字串

生成隨機的日期字串,用於插入資料庫。通過時間元組設定乙個時間段,開始和結尾時間轉換成時間戳。時間戳中隨機取乙個,再生成時間元組,再把時間元組格式化輸出為字串 import time import random a1 1976,1,1,0,0,0,0,0,0 設定開始日期時間元組 1976 01 01...