-1
read.txtのようにカンマで数字を取得しました。 1,1,1,1 \ n個のn \ 2,2,2,2 3,3,3,3Python]最初の 'read' txtから 'write'に値を変更する方法txt
と私は、プログラムによって各値を変更したいと私は新しい 値を置き換えたいですto write.txt
私はいろいろなやり方で行いましたが、カンマの検索方法はわかりません。
infile = open("read.txt", "r")
outfile = open("write.txt", "w")
total1 =0
count1 =0
line = infile.readline()
while line !="":
value = float(line)
total1 = total1 + value
count1 = count1 + 1
line = infile.readline()
outfile.write("Column,Sum,Mean,STD,Median,Mode,Min,Max\n")
infile.close()
outfile.close()
本当に、本当に、 'csv'モジュールを見てみることをお勧めします。 –
ええ、私はモジュールを使用する前に、私はそれについてよく理解するこの方法を終了したい。 –