python读txt文档-多列

有一个txt格式的文本文档,格式如下。有两行数据。3个字段,字段与字段直接使用tab键分割开。

hello1  world1  hello thank you1

hello2  world2  hello thank you2

现在想通过python读取这个文件。分别读取到hello1 , world1, 和 hello thank you1

代码如下。

with open('demo.txt', 'r') as f:
    # Read the first line of the file
    lines = f.readlines()
    for line in lines:
        # Split the line by a tab character
        data1, data2,data3 = line.strip().split('\t')
        # Print the values
        print("Data 1:", data1)
        print("Data 2:", data2)
        print("Data 3:", data3)

可以方便python取txt文本里的值配合SAP GUI Scripting做一些操作。

 

posted @ 2023-06-07 22:14  ken-yu  阅读(211)  评论(0编辑  收藏  举报