[问题] for循环读档处理

楼主: GoodByeLove (Fantastic!)   2014-05-13 17:08:56
最近刚开始学Python, 想请问版上前辈几个问题
1. 有没有办法读档案后, 利用","做区分去读一个一个的string?
p.s. 我大致写了另一个在 http://codepad.org/P1b5A7dd
档案结构如同buf = "x503, 00x1, 60x2, x305, 503x, x503, 60x1,...."
想要的结果是符合x503的都会出现在result, 反之就在result2
2. 我以下的写法都只会比对第一个string, 后面的就都不会比了 @@
不知道问题出在哪? 希望大大指点一下
buf = open("input.txt", "rb")
ori = buf.read().strip().split(",")
temp = map(str, ori)
result = []
result2 = []
number = 0
for teststr in temp:
teststr = teststr.strip() #加上这行先把空白滤掉
if teststr != '':
if teststr == 'x503':
result.append(teststr)
number = number+1
else:
result2.append(teststr)
number = number+1
else:
break
print result
print result2
print number
作者: KSJ (阿真)   2014-05-13 17:21:00
没实作过 但看起来后面的503前面有个空格吧 像这样 " x503"
作者: math99 (新世界)   2014-05-13 17:23:00
strip 应该用在 loop 里面
楼主: GoodByeLove (Fantastic!)   2014-05-13 18:06:00
感谢提醒。改了后正确囉!谢谢

Links booklink

Contact Us: admin [ a t ] ucptt.com