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

四个拥有:无论你有多弱或多强,一定要拥有真正爱你的人,拥有知心的朋友,拥有向上的事业,拥有温暖的住所。

如下所示:

# -*- 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文件,去掉空格计算每行长度的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

您可能有感兴趣的文章
Python自动化运维-使用Python脚本监控华为AR路由器关键路由变化

Python自动化运维-netmiko模块设备自动发现

Python自动化运维—netmiko模块连接并配置华为交换机

Python自动化运维-利用Python-netmiko模块备份设备配置

Python自动化运维-Paramiko模块和堡垒机实战