import csv. f = open("sample.csv", "w") writer = csv.writer(f, quoting=csv.QUOTE_ALL) writer.writerows([["a", 1], ["b", 2]]) f.close() ...
確定! 回上一頁