How do i make a sublist of every CSV row and put that sublist inside a list
问题 I'm making a sublist of every row inside a csv file but i'm getting a single list back wines_list = [] for row in wines: wines_list.append(row) print(wines_list) This returns: ['id', 'country', 'description', 'designation', 'points', 'price', 'province', 'taster_name', 'title', 'variety', 'winery', 'fixed acidity', 'volatile acidity', 'citric acid', 'residual sugar', 'chlorides', 'free sulfur dioxide', 'total sulfur dioxide', 'density', 'pH', 'sulphates', 'alcohol'] But i wan't it to append