import random
for i in
range(0
,1000):
nametext =
'''黃子韜、肖戰、迪麗熱巴、蔡徐坤、鄭愷、李晨、成龍、甄子丹、歐豪、鹿晗'''
name = nametext.split(
"、")
choicename = name[
int(random.random()*
len(name))]
print
(choicename)
citytext =
'''成都市,資陽市,巴中市,內江市,德陽市,美國,英國,法國,北京市,上海市,廣州市,深圳市'''
city = citytext.split(
",")
choicecity = city[
int(random.random()*
len(city))]
print
(choicecity)
***text =
["男"
,"女"
] choice*** = ***text[random.randint(0,
1)]print
(choice***)
choiceage = random.randint(18,
50)print
(choiceage)
choiceincome = random.randint(
200000
,500000
)print
(choiceincome)
education =
["小學"
,"初中"
,"高中"
,"大學"
,"研究生"
,"碩士"
,"博士"
] choiceeducation = education[random.randint(0,
6)]print
(choiceeducation)
效果如下
歐豪成都市男22
356886
大學
Python學習 假人和配對
這次寫乙個生成假人以及假人配對的 吧。匯入random,choices,randint這三個函式庫來達到隨機生成假人,隨機選擇資料的目的。from random import random,choices,randint1.可以先自己查資料找尋涉及到的待匹配資料放到字典裡面,例如 姓名,性別,年齡,...
python隨機分配 python 隨機分類
encoding utf 8 import pandas as pd import numpy as np from sklearn import datasets,linear model from sklearn.metrics import roc curve,auc import pylab...
python隨機漫步 Python 隨機漫步
建立randomwalk 類 我們將使用python來生成隨機漫步資料,再使用matplotlib以引入矚目的方式將這些資料呈現出來 首先建立類randomwalk from random importchoiceclassrandomwalk 乙個生成隨機漫步資料的類 def init self,...