Create an empty list called rows and iterate through the csvreader object and append each row to the rows list. rows = [] for row in csvreader: ...
確定! 回上一頁