Backend Development
Python Tutorial
Extracting PPT text and transferring it to Word becomes a breeze, requiring only 20 lines of Python code!Extracting PPT text and transferring it to Word becomes a breeze, requiring only 20 lines of Python code!

Hello everyone, I am a rookie! Today I would like to share with you a very practical Python program.
Confusion Encountered
Many friends, whether in school or at work, will encounter a problem, which is to extract the text from PPT and save it to word Among them, this can facilitate your reading or printing out the text. But many times, friends can only extract the text in the PPT one by one by copying and pasting. This method of operation is undoubtedly very inefficient. Today, Brother Rookie will bring you a new method, using a program to extract text from PPT in batches and save it to a word document. Let’s take a look. .

#1. The appropriate scenario
For example, I have such a PPT content, which contains a lot of text and pictures. I am more interested in the text, especially in papers or ppts of some important academic reports, where a lot of text needs to be extracted and analyzed. Let me give you an example of a simple PPT page:

As you can see, the PPT above contains some text and picture content information, but I just want to extract text. In fact, this can be done easily with Python. Take a look at the final effect:

The effect is not bad, it is actually very simple. Yes, let’s see how to do it.
2. Program design
We mainly use the python-pptx library and the python-docx library. Used for processing PPT files and word files respectively. You can install it directly with pip3. The whole program is very short and concise. The core code only requires six lines. The program is as shown below:

##The code is actually very short. In order to let everyone better understand this program, you can explain it one by one with the following picture.

In the program, we use a total of 3 levels of loops to process:
1). The first-level for loop is used to cycle through the slides of each page;
2) .In the second loop, determines each shape in the slide, and then determines whether the page contains a text box. If there is a text box, obtain the text box and name it text_frame.
3). The third for loop traverses all the paragraph contents in the text box, extracts the text and saves it to word among.
After traversing the entire PPT file, save all extracted text information to a local word document. The effect is as shown below:

The PPT file in the above picture contains four slides with text. After running the program, the text extraction results are shown in the figure below.

The above is the automation case sharing that Rookie brought to you today. With just a few lines of code, everyone's work can be greatly improved. Efficiency, everyone should also use the program for quick extraction.
The above is the detailed content of Extracting PPT text and transferring it to Word becomes a breeze, requiring only 20 lines of Python code!. For more information, please follow other related articles on the PHP Chinese website!
Python and Time: Making the Most of Your Study TimeApr 14, 2025 am 12:02 AMTo maximize the efficiency of learning Python in a limited time, you can use Python's datetime, time, and schedule modules. 1. The datetime module is used to record and plan learning time. 2. The time module helps to set study and rest time. 3. The schedule module automatically arranges weekly learning tasks.
Python: Games, GUIs, and MoreApr 13, 2025 am 12:14 AMPython excels in gaming and GUI development. 1) Game development uses Pygame, providing drawing, audio and other functions, which are suitable for creating 2D games. 2) GUI development can choose Tkinter or PyQt. Tkinter is simple and easy to use, PyQt has rich functions and is suitable for professional development.
Python vs. C : Applications and Use Cases ComparedApr 12, 2025 am 12:01 AMPython is suitable for data science, web development and automation tasks, while C is suitable for system programming, game development and embedded systems. Python is known for its simplicity and powerful ecosystem, while C is known for its high performance and underlying control capabilities.
The 2-Hour Python Plan: A Realistic ApproachApr 11, 2025 am 12:04 AMYou can learn basic programming concepts and skills of Python within 2 hours. 1. Learn variables and data types, 2. Master control flow (conditional statements and loops), 3. Understand the definition and use of functions, 4. Quickly get started with Python programming through simple examples and code snippets.
Python: Exploring Its Primary ApplicationsApr 10, 2025 am 09:41 AMPython is widely used in the fields of web development, data science, machine learning, automation and scripting. 1) In web development, Django and Flask frameworks simplify the development process. 2) In the fields of data science and machine learning, NumPy, Pandas, Scikit-learn and TensorFlow libraries provide strong support. 3) In terms of automation and scripting, Python is suitable for tasks such as automated testing and system management.
How Much Python Can You Learn in 2 Hours?Apr 09, 2025 pm 04:33 PMYou can learn the basics of Python within two hours. 1. Learn variables and data types, 2. Master control structures such as if statements and loops, 3. Understand the definition and use of functions. These will help you start writing simple Python programs.
How to teach computer novice programming basics in project and problem-driven methods within 10 hours?Apr 02, 2025 am 07:18 AMHow to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...
How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading?Apr 02, 2025 am 07:15 AMHow to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Atom editor mac version download
The most popular open source editor






