使用os命令greping在tupe中分配它想要删除/ t

时间:2018-05-26 10:46:02

标签: python python-3.x python-2.7

args = parser.parse_args()
find = args.data_variable

cmd = commands.getoutput("cat /cc/ddd '"+find+"' |grep -A 3 node | tail -n +2")

r = tuple(cldb.split('\n'))
print r

我得到了元组的输出,但它没有帮助如何删除它。

1 个答案:

答案 0 :(得分:0)

使用str.strip()

<强>实施例

cldb = ('\t\tm\mrcg1234', '\t\tmrcg1235', '\t\tmrcg1235.me.com')
cldb = tuple([i.strip() for i in cldb])
print(cldb)

<强>输出:

('m\\mrcg1234', 'mrcg1235', 'mrcg1235.me.com')