2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Tips】一定データ数ごとに改行する定型パターン

Last updated at Posted at 2019-01-31

プログラミング未経験者がPython覚えて子ども用計算ドリルを作る

についてのリファクタリング(その2)

改善内容

  1. 改行処理をバッファを使った定型パターンに変更
  2. データを一気に代入(append) 参考
  3. 各計算式を一つのリストにまとめる

変更後のソースコード全体:


"""計算練習ドリルを作成
	改行処理にバッファー活用+appendで行ごと書き込むバージョン
"""

import random
import openpyxl

wb = openpyxl.Workbook()  #新規ワークブックを作成
sheet = wb.active

# 各計算式を一つのListとして取り扱うと理解しやすい
list_ = [[a, '+', b, '=', ''] for a in range(1, 10) for b in range(1, 10)]

random.shuffle(list_)

buf = []    #dataを一時ため込む変数
for v in list_:
	if len(buf) > 25: #一行に25列以上データがある場合は改行    
		sheet.append(buf)
		buf=[]
	buf.extend(v)     #buf内にデータを一時的に追加保存
sheet.append(buf)     #最終行書き込み

wb.save('output3.xlsx')

drill_img.JPG

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?