省略...
异常一:python 在写入 csv 时会自动空一行
解决方案:加上 newline=‘’
环境 python3.6
writer = csv.writer(open('customer.csv', 'w', newline=''))