python输出txt文件_用python统计txt文件字数
时间: 2023-08-15 11:13:32 浏览: 230
Python实现统计文本文件字数的方法
要使用Python输出txt文件,可以使用以下代码:
```python
def read_txt_file(file_name):
with open(file_name, 'r') as file:
content = file.read()
return content
def write_txt_file(file_name, content):
with open(file_name, 'w') as file:
file.write(content)
file_name = 'example.txt'
content = read_txt_file(file_name)
print(content)
```
这段代码使用了`read_txt_file`函数来读取txt文件的内容,并将内容存储在变量`content`中。接着使用`write_txt_file`函数将内容写入新的txt文件中。
要统计txt文件的字数,可以使用以下代码:
```python
def count_words(content):
word_list = content.split()
return len(word_list)
word_count = count_words(content)
print("字数:", word_count)
```
这段代码定义了`count_words`函数,它接受一个字符串参数并使用`split`方法将字符串拆分成单词列表。通过返回列表的长度,就可以得到字数统计结果。最后,使用`print`语句输出字数结果。
请注意,在运行代码之前,确保将要读取的txt文件名作为`file_name`变量的值,并确保该文件存在于代码所在的目录中。
阅读全文