我附上了上面的python脚本。
我正在尝试将我需要的信息打印到csv中。每当我尝试这个时,我都会得到一个TypeError:'换行符'是此函数的无效关键字参数'。我对python很新,所以我不确定如何解决这个问题(或者如果脚本中还有其他问题)。
#print(teams)
with open('players.csv', 'w', newline='') as csvfile:
writer = csv.writer(csvfile, delimiter=',',
quotechar='|', quoting=csv.QUOTE_MINIMAL)
for row in teams:
writer.writerow(row)