传播问卷调查数据不够?自己生成假数据!

博客原文:https://bornforthis.cn/blog/2022/06.html

问卷调查 Excel 样式

image.png

文件下载

生成代码

序号

直接 range 生成即可。

提交答卷时间

import time

time_str = time.strftime('%Y/%m/%d %H:%M:%S', time.localtime(time.time()))  # 打印按指定格式排版的时间
print(time_str)

所用时间

import random
print(str(random.randint(80, 600)) + "秒")

来源

直接微信即可

来源详情

直接 N/A

来自 IP

from faker import Faker

faker = Faker("zh-CN")

template = "{ipv4}({province}-{city_name})"

for i in range(100):
    r = template.format(ipv4=faker.ipv4(), province=faker.province(), city_name=faker.city_name())
    print(r)

Excel 头部生成

直接选中 Excel 头部:

image.png

复制出如下:

1、您的性别: 2、您的年龄: 3、您的受教育程度:  4、您的工作是:    5、您是否是少数民族: 6、您的家庭是否有宗教信仰:  7、您试着了解过素食或尝试过素食:   8、(书籍、报纸、期刊)    8、(社交、互联网媒体)    8、(广播、电视)   8、(亲朋好友介绍)  9、平时您的素食类型: 10、您认为素食可以提供给身体足够的营养吗?  11、如果路过一家素食店,您会去品尝吗?    12、您会成为一个素食主义者吗?    13、您认为素食主义者比那些非素食主义者更健康吗?   14、为了环保和健康,需要每周安排一天吃素食,你是否能做到?  15、您觉得吃素对保持健康和幸福有多重要?   16、您觉得吃素对降低碳排放、保护环境有多重要?    17、您对喝牛奶能补钙怎么看? 18、您是否认为肉类产品可以补充人体所需的大多数蛋白质成分   19、您认为女性在怀孕期间是否可以坚持吃素吗? 20、您认为低脂纯素的饮食习惯是慢性疾病的终结者吗?  21、您有吃保健食品吗?    22、(预防疾病、促进健康)  22、(减肥塑身)   22、(提高运动或运动表现)  22、(增强免疫功能) 22、(提高记忆力或注意力)  22、(保护环境,爱护生灵)  22、(宗教信仰的影响)    22、(跟风随众)   22、(其他) 23、(家人朋友不理解、不认可或反对) 23、(每天不知道吃什么)   23、(外出就餐找不到合适的餐厅)   23、(超市和市场里可选择食材太少)  23、(不懂得如何进行营养搭配)    23、(不知道如何烹饪)    23、(聚餐时比较尴尬,因为其他人吃肉)    23、(单位食堂或外卖很难找到合适的饭菜)   24、(家人朋友的认可和理解) 24、(掌握更多烹饪技巧,让食物变得美味和丰富)    24、(需要学习更多营养学及中西医知识)    24、(能买到更多素食专属产品)    24、(其他) 总分

改写成 Python 字符串并生成目标数据:

s = "1、您的性别:    2、您的年龄: 3、您的受教育程度:  4、您的工作是:    5、您是否是少数民族: 6、您的家庭是否有宗教信仰:  7、您试着了解过素食或尝试过素食:   8、(书籍、报纸、期刊)    8、(社交、互联网媒体)    8、(广播、电视)   8、(亲朋好友介绍)  9、平时您的素食类型: 10、您认为素食可以提供给身体足够的营养吗?  11、如果路过一家素食店,您会去品尝吗?    12、您会成为一个素食主义者吗?    13、您认为素食主义者比那些非素食主义者更健康吗?   14、为了环保和健康,需要每周安排一天吃素食,你是否能做到?  15、您觉得吃素对保持健康和幸福有多重要?   16、您觉得吃素对降低碳排放、保护环境有多重要?    17、您对喝牛奶能补钙怎么看? 18、您是否认为肉类产品可以补充人体所需的大多数蛋白质成分   19、您认为女性在怀孕期间是否可以坚持吃素吗? 20、您认为低脂纯素的饮食习惯是慢性疾病的终结者吗?  21、您有吃保健食品吗?    22、(预防疾病、促进健康)  22、(减肥塑身)   22、(提高运动或运动表现)  22、(增强免疫功能) 22、(提高记忆力或注意力)  22、(保护环境,爱护生灵)  22、(宗教信仰的影响)    22、(跟风随众)   22、(其他) 23、(家人朋友不理解、不认可或反对) 23、(每天不知道吃什么)   23、(外出就餐找不到合适的餐厅)   23、(超市和市场里可选择食材太少)  23、(不懂得如何进行营养搭配)    23、(不知道如何烹饪)    23、(聚餐时比较尴尬,因为其他人吃肉)    23、(单位食堂或外卖很难找到合适的饭菜)   24、(家人朋友的认可和理解) 24、(掌握更多烹饪技巧,让食物变得美味和丰富)    24、(需要学习更多营养学及中西医知识)    24、(能买到更多素食专属产品)    24、(其他) 总分"
s = s.replace("\t", " ")
s = s.replace(":", "")
r = s.split(" ")
print(r)

输出:

['1、您的性别', '2、您的年龄', '3、您的受教育程度', '4、您的工作是', '5、您是否是少数民族', '6、您的家庭是否有宗教信仰', '7、您试着了解过素食或尝试过素食', '8、(书籍、报纸、期刊)', '8、(社交、互联网媒体)', '8、(广播、电视)', '8、(亲朋好友介绍)', '9、平时您的素食类型', '10、您认为素食可以提供给身体足够的营养吗?', '11、如果路过一家素食店,您会去品尝吗?', '12、您会成为一个素食主义者吗?', '13、您认为素食主义者比那些非素食主义者更健康吗?', '14、为了环保和健康,需要每周安排一天吃素食,你是否能做到?', '15、您觉得吃素对保持健康和幸福有多重要?', '16、您觉得吃素对降低碳排放、保护环境有多重要?', '17、您对喝牛奶能补钙怎么看?', '18、您是否认为肉类产品可以补充人体所需的大多数蛋白质成分', '19、您认为女性在怀孕期间是否可以坚持吃素吗?', '20、您认为低脂纯素的饮食习惯是慢性疾病的终结者吗?', '21、您有吃保健食品吗?', '22、(预防疾病、促进健康)', '22、(减肥塑身)', '22、(提高运动或运动表现)', '22、(增强免疫功能)', '22、(提高记忆力或注意力)', '22、(保护环境,爱护生灵)', '22、(宗教信仰的影响)', '22、(跟风随众)', '22、(其他)', '23、(家人朋友不理解、不认可或反对)', '23、(每天不知道吃什么)', '23、(外出就餐找不到合适的餐厅)', '23、(超市和市场里可选择食材太少)', '23、(不懂得如何进行营养搭配)', '23、(不知道如何烹饪)', '23、(聚餐时比较尴尬,因为其他人吃肉)', '23、(单位食堂或外卖很难找到合适的饭菜)', '24、(家人朋友的认可和理解)', '24、(掌握更多烹饪技巧,让食物变得美味和丰富)', '24、(需要学习更多营养学及中西医知识)', '24、(能买到更多素食专属产品)', '24、(其他)', '总分']

各个选项列表数据

对数据进行编码

sex = [1, 2]
age = [1, 2, 3, 4, 5, 6]
education = [1, 2, 3, 4, 5, 6, 7, 8]
job = [i for i in range(1, 14)]
ethnic_minorities = [1, 2]  # 少数民族 ethnic minorities
religion = [1, 2]  # 宗教信仰
vegetarian_diet = [1, 2]  # 素食
book_newspaper_magazine = [0, 1]  # (书籍、报纸、期刊)
social_connection_internet_media = [0, 1]  # (社交、互联网媒体)
broadcast_tv = [0, 1]  # (广播、电视)
family_and_friends = [0, 1]  # (亲朋好友介绍)
vegetarian_diet_type = [1, 2, 3, 4, 5, 6, 7, 8, 9]
nutrition = [1, 2]  # 营养
vegetarian_diet_store = [1, 2]  # 素食店
vegetarian = [1, 2]  # 素食主义者
healthy = [1, 2]  # 健康
one_day_eat_vegetarian_diet = [1, 2]  # 一天吃素食
important = [1, 2, 3, 4, 5]  # 重要
environment_important = [1, 2, 3, 4, 5]  # 保护环境有多重要
milk = [1, 2, 3, 4]  # 牛奶
meat = [1, 2, 3]  # 肉类
pregnancy = [1, 2, 3, 4]  # 怀孕
lowe_fat = [1, 2, 3]
health_food = [1, 2, 3, 4, 5, 6]  # 保健食品
health = [0, 1]  # (预防疾病、促进健康)
keep_diet = [0, 1]  # (减肥塑身)
exercise = [0, 1]  # (提高运动或运动表现)
immune = [0, 1]  # (增强免疫功能)
memory = [0, 1]  # (提高记忆力或注意力)
protection = [0, 1]  # (保护环境,爱护生灵)
religione_influence = [0, 1]  # 宗教信仰的影响
follow = [0, 1]  # 跟风随众
other = [0, 1]  # 其他
incomprehension = [0, 1]  # 家人朋友不理解、不认可或反对
no_eat = [0, 1]  # 每天不知道吃什么
right_restaurant = [0, 1]  # 外出就餐找不到合适的餐厅
less = [0, 1]  # 超市和市场里可选择食材太少
match = [0, 1]  # 不懂得如何进行营养搭配
cook = [0, 1]  # 不知道如何烹饪
awkward = [0, 1]  # 聚餐时比较尴尬,因为其他人吃肉
take_out = [0, 1]  # 外卖
accept = [0, 1]  # 家人朋友的认可和理解
technical = [0, 1]  # 技巧
knowledge = [0, 1]  # 知识
product = [0, 1]  # 产品

生成

开始汇总上面的代码:

import random
import time  # 引入time模块
import faker
import xlwt

sex = [1, 2]
age = [1, 2, 3, 4, 5, 6]
education = [1, 2, 3, 4, 5, 6, 7, 8]
job = [i for i in range(1, 14)]
ethnic_minorities = [1, 2]  # 少数民族 ethnic minorities
religion = [1, 2]  # 宗教信仰
vegetarian_diet = [1, 2]  # 素食
book_newspaper_magazine = [0, 1]  # (书籍、报纸、期刊)
social_connection_internet_media = [0, 1]  # (社交、互联网媒体)
broadcast_tv = [0, 1]  # (广播、电视)
family_and_friends = [0, 1]  # (亲朋好友介绍)
vegetarian_diet_type = [1, 2, 3, 4, 5, 6, 7, 8, 9]
nutrition = [1, 2]  # 营养
vegetarian_diet_store = [1, 2]  # 素食店
vegetarian = [1, 2]  # 素食主义者
healthy = [1, 2]  # 健康
one_day_eat_vegetarian_diet = [1, 2]  # 一天吃素食
important = [1, 2, 3, 4, 5]  # 重要
environment_important = [1, 2, 3, 4, 5]  # 保护环境有多重要
milk = [1, 2, 3, 4]  # 牛奶
meat = [1, 2, 3]  # 肉类
pregnancy = [1, 2, 3, 4]  # 怀孕
lowe_fat = [1, 2, 3]
health_food = [1, 2, 3, 4, 5, 6]  # 保健食品
health = [0, 1]  # (预防疾病、促进健康)
keep_diet = [0, 1]  # (减肥塑身)
exercise = [0, 1]  # (提高运动或运动表现)
immune = [0, 1]  # (增强免疫功能)
memory = [0, 1]  # (提高记忆力或注意力)
protection = [0, 1]  # (保护环境,爱护生灵)
religione_influence = [0, 1]  # 宗教信仰的影响
follow = [0, 1]  # 跟风随众
other = [0, 1]  # 其他
incomprehension = [0, 1]  # 家人朋友不理解、不认可或反对
no_eat = [0, 1]  # 每天不知道吃什么
right_restaurant = [0, 1]  # 外出就餐找不到合适的餐厅
less = [0, 1]  # 超市和市场里可选择食材太少
match = [0, 1]  # 不懂得如何进行营养搭配
cook = [0, 1]  # 不知道如何烹饪
awkward = [0, 1]  # 聚餐时比较尴尬,因为其他人吃肉
take_out = [0, 1]  # 外卖
accept = [0, 1]  # 家人朋友的认可和理解
technical = [0, 1]  # 技巧
knowledge = [0, 1]  # 知识
product = [0, 1]  # 产品

head_data = ['序号', '提交答卷时间', '所用时间', '来源', '来源详情', '来自IP',
             '1、您的性别', '2、您的年龄', '3、您的受教育程度', '4、您的工作是', '5、您是否是少数民族',
             '6、您的家庭是否有宗教信仰', '7、您试着了解过素食或尝试过素食', '8、(书籍、报纸、期刊)', '8、(社交、互联网媒体)',
             '8、(广播、电视)', '8、(亲朋好友介绍)', '9、平时您的素食类型', '10、您认为素食可以提供给身体足够的营养吗?',
             '11、如果路过一家素食店,您会去品尝吗?', '12、您会成为一个素食主义者吗?',
             '13、您认为素食主义者比那些非素食主义者更健康吗?', '14、为了环保和健康,需要每周安排一天吃素食,你是否能做到?',
             '15、您觉得吃素对保持健康和幸福有多重要?', '16、您觉得吃素对降低碳排放、保护环境有多重要?',
             '17、您对喝牛奶能补钙怎么看?', '18、您是否认为肉类产品可以补充人体所需的大多数蛋白质成分',
             '19、您认为女性在怀孕期间是否可以坚持吃素吗?', '20、您认为低脂纯素的饮食习惯是慢性疾病的终结者吗?',
             '21、您有吃保健食品吗?', '22、(预防疾病、促进健康)', '22、(减肥塑身)', '22、(提高运动或运动表现)',
             '22、(增强免疫功能)', '22、(提高记忆力或注意力)', '22、(保护环境,爱护生灵)', '22、(宗教信仰的影响)',
             '22、(跟风随众)', '22、(其他)', '23、(家人朋友不理解、不认可或反对)', '23、(每天不知道吃什么)',
             '23、(外出就餐找不到合适的餐厅)', '23、(超市和市场里可选择食材太少)', '23、(不懂得如何进行营养搭配)',
             '23、(不知道如何烹饪)', '23、(聚餐时比较尴尬,因为其他人吃肉)', '23、(单位食堂或外卖很难找到合适的饭菜)',
             '24、(家人朋友的认可和理解)', '24、(掌握更多烹饪技巧,让食物变得美味和丰富)',
             '24、(需要学习更多营养学及中西医知识)', '24、(能买到更多素食专属产品)', '24、(其他)', '总分']
# time_str = time.strftime('%Y/%m/%d %H:%M:%S', time.localtime(time.time()))  # 打印按指定格式排版的时间
wb = xlwt.Workbook()  # 新建一个 workbook 对象
sheet = wb.add_sheet('sheet')

for head in head_data:
    sheet.write(0, head_data.index(head), head)
    # sheet.write(行, 列, 写入数据)

faker = faker.Faker("zh-CN")
template = "{ipv4}({province}-{city_name})"
for row in range(1, 200):
    sheet.write(row, 0, row)  # 序号
    sheet.write(row, 1, time.strftime('%Y/%m/%d %H:%M:%S', time.localtime(time.time())))  # 提交答卷时间
    sheet.write(row, 2, str(random.randint(80, 600)) + "秒")  # 所用时间
    sheet.write(row, 3, random.choice(["微信", "QQ"]))  # 所用时间
    sheet.write(row, 4, "N/A")
    sheet.write(row, 5, template.format(ipv4=faker.ipv4(), province=faker.province(), city_name=faker.city_name()))
    sheet.write(row, 6, random.choice(sex))  # 性别
    sheet.write(row, 7, random.choice(age))  # 年龄
    sheet.write(row, 8, random.choice(education))
    sheet.write(row, 9, random.choice(job))
    sheet.write(row, 10, random.choice(ethnic_minorities))
    sheet.write(row, 11, random.choice(religion))
    sheet.write(row, 12, random.choice(vegetarian_diet))
    sheet.write(row, 13, random.choice(book_newspaper_magazine))
    sheet.write(row, 14, random.choice(social_connection_internet_media))
    sheet.write(row, 15, random.choice(broadcast_tv))
    sheet.write(row, 16, random.choice(family_and_friends))
    sheet.write(row, 17, random.choice(vegetarian_diet_type))
    sheet.write(row, 18, random.choice(nutrition))
    sheet.write(row, 19, random.choice(vegetarian_diet_store))
    sheet.write(row, 20, random.choice(vegetarian))
    sheet.write(row, 21, random.choice(healthy))
    sheet.write(row, 22, random.choice(one_day_eat_vegetarian_diet))
    sheet.write(row, 23, random.choice(important))
    sheet.write(row, 24, random.choice(environment_important))
    sheet.write(row, 25, random.choice(milk))
    sheet.write(row, 26, random.choice(meat))
    sheet.write(row, 27, random.choice(pregnancy))
    sheet.write(row, 28, random.choice(lowe_fat))
    sheet.write(row, 29, random.choice(health_food))
    sheet.write(row, 30, random.choice(health))
    sheet.write(row, 31, random.choice(keep_diet))
    sheet.write(row, 32, random.choice(exercise))
    sheet.write(row, 33, random.choice(immune))
    sheet.write(row, 34, random.choice(memory))
    sheet.write(row, 35, random.choice(protection))
    sheet.write(row, 36, random.choice(religione_influence))
    sheet.write(row, 37, random.choice(follow))
    sheet.write(row, 38, random.choice(other))
    sheet.write(row, 39, random.choice(incomprehension))
    sheet.write(row, 40, random.choice(no_eat))
    sheet.write(row, 41, random.choice(right_restaurant))
    sheet.write(row, 42, random.choice(less))
    sheet.write(row, 43, random.choice(match))
    sheet.write(row, 44, random.choice(cook))
    sheet.write(row, 45, random.choice(awkward))
    sheet.write(row, 46, random.choice(take_out))
    sheet.write(row, 47, random.choice(accept))
    sheet.write(row, 48, random.choice(technical))
    sheet.write(row, 49, random.choice(knowledge))
    sheet.write(row, 50, random.choice(product))
    sheet.write(row, 51, random.choice(other))

wb.save("demo200.xls")
import random
import time  # 引入time模块
import faker
import xlwt

sex = [1, 2]
age = [1, 2, 3, 4, 5, 6]
education = [1, 2, 3, 4, 5, 6, 7, 8]
job = [i for i in range(1, 14)]
ethnic_minorities = [1, 2]  # 少数民族 ethnic minorities
religion = [1, 2]  # 宗教信仰
vegetarian_diet = [1, 2]  # 素食
book_newspaper_magazine = [0, 1]  # (书籍、报纸、期刊)
social_connection_internet_media = [0, 1]  # (社交、互联网媒体)
broadcast_tv = [0, 1]  # (广播、电视)
family_and_friends = [0, 1]  # (亲朋好友介绍)
vegetarian_diet_type = [1, 2, 3, 4, 5, 6, 7, 8, 9]
nutrition = [1, 2]  # 营养
vegetarian_diet_store = [1, 2]  # 素食店
vegetarian = [1, 2]  # 素食主义者
healthy = [1, 2]  # 健康
one_day_eat_vegetarian_diet = [1, 2]  # 一天吃素食
important = [1, 2, 3, 4, 5]  # 重要
environment_important = [1, 2, 3, 4, 5]  # 保护环境有多重要
milk = [1, 2, 3, 4]  # 牛奶
meat = [1, 2, 3]  # 肉类
pregnancy = [1, 2, 3, 4]  # 怀孕
lowe_fat = [1, 2, 3]
health_food = [1, 2, 3, 4, 5, 6]  # 保健食品
health = [0, 1]  # (预防疾病、促进健康)
keep_diet = [0, 1]  # (减肥塑身)
exercise = [0, 1]  # (提高运动或运动表现)
immune = [0, 1]  # (增强免疫功能)
memory = [0, 1]  # (提高记忆力或注意力)
protection = [0, 1]  # (保护环境,爱护生灵)
religione_influence = [0, 1]  # 宗教信仰的影响
follow = [0, 1]  # 跟风随众
other = [0, 1]  # 其他
incomprehension = [0, 1]  # 家人朋友不理解、不认可或反对
no_eat = [0, 1]  # 每天不知道吃什么
right_restaurant = [0, 1]  # 外出就餐找不到合适的餐厅
less = [0, 1]  # 超市和市场里可选择食材太少
match = [0, 1]  # 不懂得如何进行营养搭配
cook = [0, 1]  # 不知道如何烹饪
awkward = [0, 1]  # 聚餐时比较尴尬,因为其他人吃肉
take_out = [0, 1]  # 外卖
accept = [0, 1]  # 家人朋友的认可和理解
technical = [0, 1]  # 技巧
knowledge = [0, 1]  # 知识
product = [0, 1]  # 产品

head_data = ['序号', '提交答卷时间', '所用时间', '来源', '来源详情', '来自IP',
             '1、您的性别', '2、您的年龄', '3、您的受教育程度', '4、您的工作是', '5、您是否是少数民族',
             '6、您的家庭是否有宗教信仰', '7、您试着了解过素食或尝试过素食', '8、(书籍、报纸、期刊)', '8、(社交、互联网媒体)',
             '8、(广播、电视)', '8、(亲朋好友介绍)', '9、平时您的素食类型', '10、您认为素食可以提供给身体足够的营养吗?',
             '11、如果路过一家素食店,您会去品尝吗?', '12、您会成为一个素食主义者吗?',
             '13、您认为素食主义者比那些非素食主义者更健康吗?', '14、为了环保和健康,需要每周安排一天吃素食,你是否能做到?',
             '15、您觉得吃素对保持健康和幸福有多重要?', '16、您觉得吃素对降低碳排放、保护环境有多重要?',
             '17、您对喝牛奶能补钙怎么看?', '18、您是否认为肉类产品可以补充人体所需的大多数蛋白质成分',
             '19、您认为女性在怀孕期间是否可以坚持吃素吗?', '20、您认为低脂纯素的饮食习惯是慢性疾病的终结者吗?',
             '21、您有吃保健食品吗?', '22、(预防疾病、促进健康)', '22、(减肥塑身)', '22、(提高运动或运动表现)',
             '22、(增强免疫功能)', '22、(提高记忆力或注意力)', '22、(保护环境,爱护生灵)', '22、(宗教信仰的影响)',
             '22、(跟风随众)', '22、(其他)', '23、(家人朋友不理解、不认可或反对)', '23、(每天不知道吃什么)',
             '23、(外出就餐找不到合适的餐厅)', '23、(超市和市场里可选择食材太少)', '23、(不懂得如何进行营养搭配)',
             '23、(不知道如何烹饪)', '23、(聚餐时比较尴尬,因为其他人吃肉)', '23、(单位食堂或外卖很难找到合适的饭菜)',
             '24、(家人朋友的认可和理解)', '24、(掌握更多烹饪技巧,让食物变得美味和丰富)',
             '24、(需要学习更多营养学及中西医知识)', '24、(能买到更多素食专属产品)', '24、(其他)', '总分']
# time_str = time.strftime('%Y/%m/%d %H:%M:%S', time.localtime(time.time()))  # 打印按指定格式排版的时间
wb = xlwt.Workbook()  # 新建一个 workbook 对象
sheet = wb.add_sheet('sheet')

for head in head_data:
    sheet.write(0, head_data.index(head), head)
    # sheet.write(行, 列, 写入数据)

faker = faker.Faker("zh-CN")
template = "{ipv4}({province}-{city_name})"
for row in range(1, 200):
    sheet.write(row, 0, row)  # 序号
    sheet.write(row, 1, time.strftime('%Y/%m/%d %H:%M:%S', time.localtime(time.time())))  # 提交答卷时间
    sheet.write(row, 2, str(random.randint(80, 600)) + "秒")  # 所用时间
    sheet.write(row, 3, random.choice(["微信", "QQ"]))  # 所用时间
    sheet.write(row, 4, "N/A")
    sheet.write(row, 5, template.format(ipv4=faker.ipv4(), province=faker.province(), city_name=faker.city_name()))
    sheet.write(row, 6, random.choice(sex))  # 性别
    sheet.write(row, 7, random.choice(age))  # 年龄
    sheet.write(row, 8, random.choice(education))
    sheet.write(row, 9, random.choice(job))
    sheet.write(row, 10, random.choice(ethnic_minorities))
    sheet.write(row, 11, random.choice(religion))
    sheet.write(row, 12, random.choice(vegetarian_diet))
    sheet.write(row, 13, random.choice(book_newspaper_magazine))
    sheet.write(row, 14, random.choice(social_connection_internet_media))
    sheet.write(row, 15, random.choice(broadcast_tv))
    sheet.write(row, 16, random.choice(family_and_friends))
    sheet.write(row, 17, random.choice(vegetarian_diet_type))
    sheet.write(row, 18, random.choice(nutrition))
    sheet.write(row, 19, random.choice(vegetarian_diet_store))
    sheet.write(row, 20, random.choice(vegetarian))
    sheet.write(row, 21, random.choice(healthy))
    sheet.write(row, 22, random.choice(one_day_eat_vegetarian_diet))
    im23 = random.choice(important)
    sheet.write(row, 23, im23)
    im24 = random.choice(environment_important)
    sheet.write(row, 24, im24)
    sheet.write(row, 25, random.choice(milk))
    sheet.write(row, 26, random.choice(meat))
    sheet.write(row, 27, random.choice(pregnancy))
    sheet.write(row, 28, random.choice(lowe_fat))
    sheet.write(row, 29, random.choice(health_food))
    sheet.write(row, 30, random.choice(health))
    sheet.write(row, 31, random.choice(keep_diet))
    sheet.write(row, 32, random.choice(exercise))
    sheet.write(row, 33, random.choice(immune))
    sheet.write(row, 34, random.choice(memory))
    sheet.write(row, 35, random.choice(protection))
    sheet.write(row, 36, random.choice(religione_influence))
    sheet.write(row, 37, random.choice(follow))
    sheet.write(row, 38, random.choice(other))
    sheet.write(row, 39, random.choice(incomprehension))
    sheet.write(row, 40, random.choice(no_eat))
    sheet.write(row, 41, random.choice(right_restaurant))
    sheet.write(row, 42, random.choice(less))
    sheet.write(row, 43, random.choice(match))
    sheet.write(row, 44, random.choice(cook))
    sheet.write(row, 45, random.choice(awkward))
    sheet.write(row, 46, random.choice(take_out))
    sheet.write(row, 47, random.choice(accept))
    sheet.write(row, 48, random.choice(technical))
    sheet.write(row, 49, random.choice(knowledge))
    sheet.write(row, 50, random.choice(product))
    sheet.write(row, 51, random.choice(other))
    sheet.write(row, 52, im23 + im24)

wb.save("demo300.xls")
欢迎关注我公众号:AI悦创,有更多更好玩的等你发现!

::: details 公众号:AI悦创【二维码】



:::

::: info AI悦创·编程一对一

AI悦创·推出辅导班啦,包括「Python 语言辅导班、C++ 辅导班、java 辅导班、算法/数据结构辅导班、少儿编程、pygame 游戏开发」,全部都是一对一教学:一对一辅导 + 一对一答疑 + 布置作业 + 项目实践等。当然,还有线下线上摄影课程、Photoshop、Premiere 一对一教学、QQ、微信在线,随时响应!微信:Jiabcdefh

C++ 信息奥赛题解,长期更新!长期招收一对一中小学信息奥赛集训,莆田、厦门地区有机会线下上门,其他地区线上。微信:Jiabcdefh

方法一:[QQ](http://wpa.qq.com/msgrd?v=3&uin=1432803776&site=qq&menu=yes)

方法二:微信:Jiabcdefh

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,529评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,015评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,409评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,385评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,387评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,466评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,880评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,528评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,727评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,528评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,602评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,302评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,873评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,890评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,132评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,777评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,310评论 2 342

推荐阅读更多精彩内容