質問
入力にブレークラインがあった場合に、出力に挿入ブレークラインを挿入するコードをどのように記述できますか?
コード
data1=[]
with open("FileInput1.txt") as file:
for line in file:
data1.append([float(f) for f in line.strip().split()])
data2=[]
with open("FileInput2.csv") as File2:
for line in File2:
data2.append([f for f in line.strip().split()])
サンプル入力:
ファイル入力#1
1223 32 (userID - int = 1223, work hours = 32) 2004 12.2 8955 80
a。電流出力
1223 32 2004 12.2 8955 80
FileInput2:
UserName 3423 23.6 Name 6743 45.9
a。電流出力
UserName 3423 23.6 Name 6743 45.9