我正在尝试逐行读取每一行并将每一行转换为元组,如以下考试所示:
可能的重复: 将字符串转换为元组
input_1.txt
126871 test
126262 value test
结果.txt
('126871', 'test')
('126262', 'value', 'test')
示例代码:
def string_to_tuple_example():
with open('Input_file_1.txt', 'r') as myfile1:
tuples1 = myfile2.readlines()
print tuples1 #return string, here I STUCK
非常感谢您的任何建议。