如何在python中过滤CSV



我有一个名为film.csv的csv文件,每列的标题如下(带有几个示例行):

Year;Length;Title;Subject;Actor;Actress;Director;Popularity;Awards;*Image
1990;111;Tie Me Up! Tie Me Down!;Comedy;Banderas, Antonio;Abril, Victoria;Almodóvar, Pedro;68;No;NicholasCage.png
1991;113;High Heels;Comedy;Bosé, Miguel;Abril, Victoria;Almodóvar, Pedro;68;No;NicholasCage.png
1983;104;Dead Zone, The;Horror;Walken, Christopher;Adams, Brooke;Cronenberg, David;79;No;NicholasCage.png
1979;122;Cuba;Action;Connery, Sean;Adams, Brooke;Lester, Richard;6;No;seanConnery.png
1978;94;Days of Heaven;Drama;Gere, Richard;Adams, Brooke;Malick, Terrence;14;No;NicholasCage.png
1983;140;Octopussy;Action;Moore, Roger;Adams, Maud;Glen, John;68;No;NicholasCage.png

我需要用基本命令(不使用Pandas)解析这个csv

  1. 如何提取1985年之前制作的演员名= Richard且award = yes的所有电影标题?(我已经能够让它显示lisy的奖励==是的,但不是其余的)

  2. 我如何计算任何给定演员在列表中出现的次数?

file_name = "film.csv"
print('loading file')
lines = (line for line in open(file_name,encoding='cp1252')) #generator to capture lines
print('removing ;')
lists = (s.rstrip().split(";") for s in lines) #generators to capture lists containing values from lines
print('2-filter by awards')
sel = input()
if sel == '2': 
cols=next(lists) #obtains only the header
print(cols)
collections = (dict(zip(cols,data)) for data in lists)

filtered = (col["Title"] for col in collections if col["Awards"][0]== "Y")
for item in filtered:
print(item)
#   input()

#browse lists and index them per header values, then filter all movies that have been awarded
#using a new generator object
else: 

要读取和过滤数据,您可以使用下一个示例(我使用award == No,因为在您的示例中没有award == Yes和其他标准的电影):

import csv
from collections import Counter
with open("data.csv", "r") as f_in:
reader = csv.DictReader(f_in, delimiter=";")
data = list(reader)
# extract all movie titles with the actor first name = Richard , made before year 1985 , and award = No
for d in data:
if (
d["Actor"].split(", ")[-1] == "Richard"
and int(d["Year"]) < 1985
and d["Awards"] == "No"
):
print(d)

打印:

{
"Year": "1978",
"Length": "94",
"Title": "Days of Heaven",
"Subject": "Drama",
"Actor": "Gere, Richard",
"Actress": "Adams, Brooke",
"Director": "Malick, Terrence",
"Popularity": "14",
"Awards": "No",
"*Image": "NicholasCage.png",
}

要获得演员计数器,您可以使用collections.Counter:

cnt = Counter(d["Actor"] for d in data)
print(cnt)

打印:

Counter(
{
"Banderas, Antonio": 1,
"Bosé, Miguel": 1,
"Walken, Christopher": 1,
"Connery, Sean": 1,
"Gere, Richard": 1,
"Moore, Roger": 1,
}
)

这将打印出1985年之前拍摄的所有演员名字为Richard的电影片名和奖项== Yes:

filter = {}
lines = open('test.csv', 'r').readlines()
columns = lines[0].strip().split(';')
lines.pop(0)
for i in lines:
x = i.strip().split(';')
# Checking if the movie was made before 1985
if int(x[columns.index('Year')]) < 1985:
# Checking if the actor's first name is Richard
if x[columns.index('Actor')].split(', ')[1] == 'Richard':
# Checking if awards == Yes
if x[columns.index('Awards')] == 'Yes':
# Printing out the title of the movie
print(x[columns.index('Title')])

计算任何给定的演员是否出现在列表中:

name = "Gere, Richard" #   Given actor name
count = 0
for i in lines:
x = i.strip().split(';')
# Checking if the actor's name is the given name
if x[columns.index('Actor')] == name:
# If it is, add 1 to the count
count += 1

输出:count: 1

相关内容

  • 没有找到相关文章

最新更新