Python csv reader for row in reader - what does the the throwaway underscore represent in this code?
问题 I'm reading data from a csv file. I get that 'row' is the variable that represents the loop I am going through, but what is the "_" that is being thrown away here? for row in csv_reader: _, Student.objects.get_or_create( first_name=row[0], last_name=row[1], email=row[2], organisation=row[3], enrolled=row[4], last_booking=row[5], credits_total=row[6], credits_balance=row[7], ) For example, this code also works: for row in csv_reader: Student.objects.get_or_create( first_name=row[0], last_name