答案1
这是使用 Python 获取特定类型电影数量的工作版本。它必须根据您的具体用途进行调整。我只是导入了 txt 文件,将其拆分为列表列表,然后在类型列中搜索给定的字符串。
txt = open('file.csv')
contents = txt.read()
contents = contents.split('\n')
new = []
for line in contents:
new.append(line.split(','))
def searchGenre(contents, genreName):
count = 0
for line in contents:
if genreName in line[genreColumnIndex]:
count += 1
print(line)
print(count, " movies of that genre.")
print("searching for horror")
searchGenre(contents, "horror")