import csv f = open('test.csv', 'w', newline='', encoding='utf-8') writer = csv.writer(f, delimiter=',') writer.writerow(['姓名', ...
確定! 回上一頁