脚本如下:
#!/usr/bin/python
-*- coding: utf-8 -*-
for line in open("awip.conf"):
print(line.strip())
print("aaa")
awip.conf里面有两个IP。
使用.strip即可
其实很简单,python有两个自带的函数:.strip()和.rstrip()
.strip()的意思是消除字符串整体的指定字符
.rstrip()的意思是消除字符串末尾的指定字符
括号里什么都不写,默认消除空格和换行符
原文地址:http://blog.51cto.com/weiruoyu/2145910
时间: 2024-11-03 03:28:23