欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python读取txt文件,去掉空格计算每行长度的方法

程序员文章站 2023-09-07 15:30:29
如下所示: # -*- coding: utf-8 -*- file2 = open("source.txt", 'r') file1 = open(...

如下所示:

# -*- coding: utf-8 -*-

file2 = open("source.txt", 'r')

file1 = open("target.txt", "r")

for value1 in file1.readlines():
 word1 = str(value1).split()
 l1 = len(word1)
 print l1
for value2 in file2.readlines():
 word2 = str(value2).split()
 l2 = len(word2)
 print l2
file1.close()
file2.close()

以上这篇python读取txt文件,去掉空格计算每行长度的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。