f = open('test.txt', 'r'). lines = f.read().splitlines() #分行讀取. lst = [ln.split(' ')[0] for ln in lines] #依據空格做切割字串,並只取第一 ...
確定! 回上一頁