Home  >  Article  >  Backend Development  >  How to merge 162 Word files with one line of python code

How to merge 162 Word files with one line of python code

WBOY
WBOYforward
2023-04-28 11:58:141750browse

1. Upload the code

In fact, no matter how many Word files are merged, 1 line of code is enough.

# 下载方式:pip install python-office
import office
office.word.merge4docx(input_path=r'D:\程序员晚枫的文件夹\word-in', 
                        output_path=r'D:\程序员晚枫的文件夹\word-out')

2. Related functions

If you need to print, you can also convert Word to PDF after merging.

import office
office.word.docx2pdf(path=r'D:\程序员晚枫的文件夹\word-out')

What are the data types of python?

Data types of python:

1. Numeric types, including int (integer), long (long integer) and float (floating point type).

2. Strings, respectively str type and unicode type.

3. Boolean type. The Python Boolean type is also used for logical operations and has two values: True (true) and False (false).

4. List, list is the most frequently used data type in Python, and any data type can be placed in the collection.

5. Tuple, the tuple is marked with "()", and the internal elements are separated by commas.

6. Dictionary. A dictionary is a collection of key-value pairs. 7. Set, a set is an unordered, non-repeating data combination.

The above is the detailed content of How to merge 162 Word files with one line of python code. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete