1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
print("姓名:", faker_zh.name()) print("女性姓名:", faker_zh.name_female()) print("男性姓名:", faker_zh.name_male()) print("男性名:", faker_zh.first_name_male()) print("男性姓:", faker_zh.last_name_male()) print("罗马名:", faker_zh.romanized_name())
print("邮箱:", faker_zh.email()) print("手机号:", faker_zh.phone_number()) print("手机号段:", faker_zh.phonenumber_prefix())
print("身份证号:", faker_zh.ssn())
print("公司名称(长):", faker_zh.company()) print("公司名称(短):", faker_zh.company_prefix()) print("公司性质:", faker_zh.company_suffix()) print("职位:", faker_zh.job()) print("信用卡号:", faker_zh.credit_card_number()) print("信用卡到期日:", faker_zh.credit_card_expire()) print("信用卡信息:", faker_zh.credit_card_full()) print("信用卡信息:", faker_zh.credit_card_full()) print("信用卡类型:", faker_zh.credit_card_provider())
print("域名:", faker_zh.domain_name()) print("url:", faker_zh.url())
print("谷歌浏览器user_agent信息:", faker_zh.chrome()) print("火狐浏览器user_agent信息:", faker_zh.firefox()) print("user_agent信息:", faker_zh.user_agent())
print("文件扩展名:", faker_zh.file_extension()) print("文件名(包含扩展名):", faker_zh.file_name()) print("文件路径:", faker_zh.file_path()) print("随机mime type:", faker_zh.mime_type())
print("三位随机数:", faker_zh.numerify()) print("0-9随机数:", faker_zh.random_digit()) print("1-9随机数:", faker_zh.random_digit_not_null()) print("随机数,默认0-9999,可以设置min、max:", faker_zh.random_int()) print("随机数字,参数digits可以设置位数:", faker_zh.random_number(8)) print("浮点数:", faker_zh.pyfloat(left_digits=5, right_digits=2, positive=True)) print("decimal:", faker_zh.pydecimal(left_digits=5, right_digits=2, positive=True))
print("随机字符串:", faker_zh.pystr()) print("随机词语:", faker_zh.word()) print("随机文章(虽然至今没有一句能看懂什么意思):", faker_zh.text()) print("随机uudi:", faker_zh.uuid4())
print("随机生成指定范围内的日期:", faker_zh.date_between())
print("档案信息:", faker_zh.profile()) print("档案信息(简单):", faker_zh.simple_profile())
print("市/县:", faker_zh.city_suffix()) print("国家:", faker_zh.country()) print("国家编码:", faker_zh.country_code()) print("区:", faker_zh.district()) print("详细地址:", faker_zh.address()) print("地理坐标:", faker_zh.coordinate()) print("纬度:", faker_zh.latitude()) print("经度:", faker_zh.longitude()) print("邮编:", faker_zh.postcode()) print("街道地址:", faker_zh.street_address()) print("街道名:", faker_zh.street_name()) print("街/路:", faker_zh.street_suffix())
|