python 隨機生成字串資料
不說話位元組貼程式碼:
# -*- coding:UTF-8 -*-
print ('---------------------------game---------------------------')
import re
from random import randint, choice
from string import lowercase
from sys import maxint
from time import ctime
doms = ('com', 'edu', 'net', 'org', 'gov')#定義元組
for i in range(randint(10,20)): #迴圈 10-20次
dtint = randint(0, maxint-1)#獲得隨機數
dtstr = ctime(dtint) # 格式化時間
shorter = randint(4,7)#獲得隨機數
em = ''
for j in range(shorter):#迴圈生成em
em +=choice(lowercase)
longer = randint(shorter,12) #domain
dn = ''
for j in range(longer):#迴圈生成dn
dn += choice(lowercase)
f=open('email.txt','a+')#開啟檔案以追加的方式,沒有檔案則建立檔案
x='%s::%s@%s.%s::%d-%d-%d' % (dtstr, em,dn, choice(doms), dtint, shorter, longer)+'\n'#得到我們想要的字串一個迴圈得到一個字串
f.writelines(x)#寫入檔案
f.close()#關閉檔案
print ('---------------------------game---------------------------')
# -*- coding:UTF-8 -*-
print ('---------------------------game---------------------------')
import re
from random import randint, choice
from string import lowercase
from sys import maxint
from time import ctime
doms = ('com', 'edu', 'net', 'org', 'gov')#定義元組
for i in range(randint(10,20)): #迴圈 10-20次
dtint = randint(0, maxint-1)#獲得隨機數
dtstr = ctime(dtint) # 格式化時間
shorter = randint(4,7)#獲得隨機數
em = ''
for j in range(shorter):#迴圈生成em
em +=choice(lowercase)
longer = randint(shorter,12) #domain
dn = ''
for j in range(longer):#迴圈生成dn
dn += choice(lowercase)
f=open('email.txt','a+')#開啟檔案以追加的方式,沒有檔案則建立檔案
x='%s::%s@%s.%s::%d-%d-%d' % (dtstr, em,dn, choice(doms), dtint, shorter, longer)+'\n'#得到我們想要的字串一個迴圈得到一個字串
f.writelines(x)#寫入檔案
f.close()#關閉檔案
print ('---------------------------game---------------------------')
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26764973/viewspace-1313591/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python生成隨機數、隨機字串Python隨機字串
- 【轉】python生成隨機字串Python隨機字串
- 生成隨機字串並排序隨機字串排序
- 隨機字串生成與排序隨機字串排序
- javascript隨機生成字串,可以用來生成隨機密碼JavaScript隨機字串密碼
- Linux Shell 生成隨機數和隨機字串Linux隨機字串
- python 隨機字串Python隨機字串
- python 使用 random模組生成隨機測試資料Pythonrandom隨機
- python 隨機數生成Python隨機
- Python隨機數與隨機字串詳解Python隨機字串
- QT生成固定長度的隨機字串QT隨機字串
- Python 中的POST/GET包構建以及隨機字串的生成Python隨機字串
- 生成固定長度不重複的隨機字串隨機字串
- 機器學習演算法的隨機資料生成機器學習演算法隨機
- Python生成隨機數random模組Python隨機random
- Python中如何生成隨機數?Python隨機
- python生成隨機數的方法Python隨機
- Python隨機數生成方法Python隨機
- 【C#】比較 Random 與 RandomNumberGenerator 生成隨機字串C#random隨機字串
- Python如何隨機生成1到100的隨機數?Python隨機
- Python 實現隨機打亂字串Python隨機字串
- 如何隨機生成一個大表的資料隨機
- (轉)Oracle的隨機數、隨機日期和時間、隨機字串及造資料匿名過程Oracle隨機字串
- 怎麼用Python生成隨機數Python隨機
- 直播軟體開發,JS生成隨機字串的方法JS隨機字串
- 【DBMS_RANDOM】使用 DBMS_RANDOM包生成隨機字串random隨機字串
- php隨機字串PHP隨機字串
- 機器學習演算法的隨機資料生成總結機器學習演算法隨機
- 生成隨機排列隨機
- 生成隨機數隨機
- python生成隨機圖形驗證碼Python隨機
- Python隨機數生成模組random詳解Python隨機random
- Python模組學習:random 隨機數生成Pythonrandom隨機
- 第六章 生成隨機字串並排序 練習隨機字串排序
- PostgreSQL 生成隨機數字、字串、日期、驗證碼以及 UUIDSQL隨機字串UI
- python怎麼生成隨機不重複陣列Python隨機陣列
- Python PIL模組隨機生成中文驗證碼Python隨機
- JavaScript 生成隨機數JavaScript隨機