tuple_list = [('1','2'),('2','3'),('2','6')]
string = Point
Desired_List = [Point('1','2'),Point('2','3'),Point('2','6')]
我曾嘗試下面的代碼: for x in tuple_list:
x.append("Point")
for x in tup
我需要幫助連接基於常見字符串的兩個文本文件。 我的第一個txt文件看起來是這樣的: Hello abc
Wonders xyz
World abc
我的第二個txt文件看起來是這樣的: abc A
xyz B
abc C
我希望我的輸出文件是: Hello abc A
Wonders xyz B
World abc C
我的代碼是這樣的: a = open("file1",