##質問内容
Pythonで,csvファイルのデータをPowerPointのスライドに読み込みたいのですが,方法はないでしょうか?
PowerPointのテーブル形式で表示させたいです.
ちなみに,現在,このようなコードを書いています.
Python
1#PowerPointを編集するためのライブラリ 2from pptx import Presentation 3 4#サイズやテキストを扱うためのライブラリ 5from pptx.util import Inches, Pt 6 7#テキストの背景の色を決めるためのライブラリ 8from pptx.dml.color import RGBColor 9 10 11 12 13prs = Presentation() 14 15title_slide_layout = prs.slide_layouts[0] 16 17slide = prs.slides.add_slide(title_slide_layout) 18 19title = slide.shapes.title 20 21#サブタイトル 22subtitle = slide.placeholders[1] 23 24title.text = "〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇" 25 26subtitle.text = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" 27
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。