Python 2.7:来自Textfile的行,多个字符串发生变化

时间:2016-06-08 16:31:36

标签: python-2.7

我遇到了一个简单的问题,我无法解决问题。导入文本文件后,它看起来像这样:

 ['ADD_TEST xxxxxx"  ', ['set_tests_properties xxxxx ', 'set_tests_properties xxxx ']]
 ['ADD_TEST yyyyyy"  ', ['set_tests_properties yyyyy ', 'set_tests_properties yyyy ']]

我需要这样:

 ADD_TEST xxxxxx
 set_tests_properties xxxxx
 set_tests_properties xxxxx
 ADD_TEST yyyyyy
 set_tests_properties yyyyy
 set_tests_properties yyyyyy

提前致谢

1 个答案:

答案 0 :(得分:0)

如果您只想将其打印到耗材上,请使用字符串切片器。

a = ['ADD_TEST xxxxxx"  ', ['set_tests_properties xxxxx ', 'set_tests_properties xxxx ']]
b = ['ADD_TEST yyyyyy"  ', ['set_tests_properties yyyyy ', 'set_tests_properties yyyy ']]

print a[0]
print a[1][0]
print a[1][1]
print b[0]
print b[1][0]
print b[1][1]