from docxtpl import DocxTemplate
import os
import random
import pyMySQL
cur_path = os.path.dirname(__file__)
tempfilename = os.path.join(cur_path, 'template', '加法模板.docx')
savefilename = os.path.join(cur_path, '加法.docx')
tpl = DocxTemplate(tempfilename)
list1 = []
def build_data():
for x in range(25):
items = {}
list2 = []
for y in range(4):
num1 = random.randint(0,99)
num2 = random.randint(0,99)
list2.Append(f'{num1}+{num2}=')
items.setdefault('cols', list2)
list1.append(items)
context = {
'title': '100以内加法试卷(100道)',
'tbl_contents': list1,
'header': '加法试卷',
'footer': '2020-09-13',
}
tpl.render(context)
tpl.save(savefilename)
if __name__ == "__main__":
build_data()
python随机数 python随机数100道加法题
转载文章标签 python 100以内的加法 文章分类 Python 后端开发
本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
python 随机数 list python 随机数库
使用random库:import random-基本随机数函数:seed()、random()-扩展随机数函数:randint()、getrandbits()、uniform()、randrange()、choice()、shuffle()
python 随机数 list random随机数库 Python 随机数