Python乙個可以生成隨機資料的庫

2022-03-27 09:58:21 字數 649 閱讀 5587

發現乙個十分有用的庫

faker,作用竟是可以生成各種各樣的隨機資料

新版本要使用

pip install fake-factory

而不能直接

pip install fake

git:

文件:http://

fake-factory.readthedocs.io/en/master/index.html

文件十分清楚, 用法就是這樣的了,

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

from

faker import factory

fake =factory.create()

#print dir(fake)

#瀏覽器資訊

print fake.chrome()

print fake.user_agent()

#url資料

print fake.url()

print fake.uri()

#密文print fake.uuid4()

print fake.password()

這些隨機測試可以用於機器學習,資料探勘,自動測試,以及嘿嘿

麻麻再也不用擔心我沒有資料了

乙個隨機數生成函式

include include include 乙個隨機數生成函式 此函式不是基於用線性同餘法 標準庫中的rand 基於此方法 而是以乙個knuth提出的相減方法為基礎,速度比標準庫中的rand 要快,但不標準。staticlongg next 1 設定seed為任意負數值作為種子。voidrand...

python隨機數生成

python中的random模組用於生成隨機數。下面介紹一下random模組中最常用的幾個函式。random.random random.random 用於生成乙個0到1的隨機符點數 0 n 1.0 random.uniform random.uniform的函式原型為 random.uniform...

Python生成隨機數

import random import string 隨機整數 print random.randint 1,50 隨機選取0到100間的偶數 print random.randrange 0,101,2 隨機浮點數 print random.random print random.uniform...