2015-09-29から1日間の記事一覧

<Python, pptx> Inches(1) のサイズ

pptxモジュールで使う単位Inches() これが1の時、どの大きさか? を調べてみた。 1つのTextboxのサイズはwidth, height = Inches(1), Inches(1) 白紙のページのサイズは、 縦が6.5 横が9 らしい。 ふーん。。。

<Python> ソート(sort)

そーと sort() 2種類あるらしい。 In [1]: a = [5,7,8,1,2,3,6] In [2]: sorted(a) Out[2]: [1, 2, 3, 5, 6, 7, 8] In [3]: b = a.copy() In [4]: b.sort() In [5]: b Out[5]: [1, 2, 3, 5, 6, 7, 8] In [6]: a Out[6]: [5, 7, 8, 1, 2, 3, 6] ソートメソッ…

<Python> read the doc

ドキュメントのサイト。 Home | Read the Docs python-pptxやpillowはここにドキュメントが保管されてるようだ。 python-pptx python-pptx — python-pptx 0.5.7 documentation pillow Pillow — Pillow (PIL Fork) 2.6.1 documentation ふーん。