我试图在多维列表中查找特定值。但是当我试图找到那个特定值时,我的函数将 return 什么都没有
Im trying to find a specific value in a multidimensional list. But when I try to find that specific value my function will return nothing
所以我试图在我的列表中搜索用户指定的电影评级,但每次我指定一个评级来搜索我的功能时 returns 什么都没有。
例如:当它提示我输入一个评分来查找时。我将输入 "PG",它什么也不会 return。虽然我知道有PG级的电影。
我认为问题可能出在我的评级函数或我创建多维列表的方式上。
下面是我的代码。任何帮助表示赞赏。谢谢!
def getInput():
try:
inFile = open("movies.txt", 'r')
except IOError:
print("File cannot be found. Check Spelling.")
else:
return inFile.readlines()
def menu():
L = getInput()
for i in range(0, len(L)):
L[i] = L[i].split('\n')
while(True):
print("\nWelcome to the movie finder!")
print("\t1. Print the Movies alphabetically by name.")
print("\t2. Print movies with a rating matching yours.")
print("\t3. Print the movies by run time.")
print("\t4. Find all movies with a run time less than your desired time.")
print("\t5. Find all movies with a run time greater than your desired time.")
print("Type -1 to quit.")
opt = input("Input a number to start desired search: ")
if (int(opt) == 1):
alpha(L)
elif (int(opt) == 2):
rating(L)
elif (int(opt) == 3):
runTime(L)
elif (int(opt) == 4):
lessThan(L)
elif (int(opt) == 5):
greaterThan(L)
elif (int(opt) == -1):
break;
else:
print("Invalid Input")
def alpha(L):
L.sort()
print("\n",L)
def rating(L):
userRate = str(input("Enter a rating to search for: "))
for i in range(0, len(L)):
for j in range(len(L[i])):
if userRate == L[i][2]:
print(L[i][0])
menu()
这就是 L(我的多维列表的样子)
[['"Detective Pikachu",104,PG', ''], ['"The Secret Life of Pets 2",86,PG', ''], ['"Deadpool 2",119,R', ''], ['"Godzilla: King of the Monsters",132,PG-13', ''], ['"A
vengers: Endgame",181,PG-13', ''], ['"The Lion King(1994)",88,G']]
您的代码没有什么特别的问题。
但是,您的 L
格式有误。
['"Detective Pikachu",104,PG', '']
里面只有2个元素。
元素 0
是 "Detective Pikachu",104,PG
元素 1
是 </code>。 </p>
<p>您应该修复 <code>getInput()
解析 movies.txt
的方式,或者更改您的函数以读取 L
。
此外,您应该 close()
使用后的文件。
第 L[i] = L[i].split('\n')
行不符合我的要求。您的数据行以逗号分隔,但您在末尾拆分了换行符。你可能想要:
L[i] = L[i].strip('\n').split(',')
但与其自己解析 CSV 文件,不如考虑使用 the csv
module from the standard library,它将为您处理大部分细节。
所以我试图在我的列表中搜索用户指定的电影评级,但每次我指定一个评级来搜索我的功能时 returns 什么都没有。
例如:当它提示我输入一个评分来查找时。我将输入 "PG",它什么也不会 return。虽然我知道有PG级的电影。
我认为问题可能出在我的评级函数或我创建多维列表的方式上。
下面是我的代码。任何帮助表示赞赏。谢谢!
def getInput():
try:
inFile = open("movies.txt", 'r')
except IOError:
print("File cannot be found. Check Spelling.")
else:
return inFile.readlines()
def menu():
L = getInput()
for i in range(0, len(L)):
L[i] = L[i].split('\n')
while(True):
print("\nWelcome to the movie finder!")
print("\t1. Print the Movies alphabetically by name.")
print("\t2. Print movies with a rating matching yours.")
print("\t3. Print the movies by run time.")
print("\t4. Find all movies with a run time less than your desired time.")
print("\t5. Find all movies with a run time greater than your desired time.")
print("Type -1 to quit.")
opt = input("Input a number to start desired search: ")
if (int(opt) == 1):
alpha(L)
elif (int(opt) == 2):
rating(L)
elif (int(opt) == 3):
runTime(L)
elif (int(opt) == 4):
lessThan(L)
elif (int(opt) == 5):
greaterThan(L)
elif (int(opt) == -1):
break;
else:
print("Invalid Input")
def alpha(L):
L.sort()
print("\n",L)
def rating(L):
userRate = str(input("Enter a rating to search for: "))
for i in range(0, len(L)):
for j in range(len(L[i])):
if userRate == L[i][2]:
print(L[i][0])
menu()
这就是 L(我的多维列表的样子)
[['"Detective Pikachu",104,PG', ''], ['"The Secret Life of Pets 2",86,PG', ''], ['"Deadpool 2",119,R', ''], ['"Godzilla: King of the Monsters",132,PG-13', ''], ['"A
vengers: Endgame",181,PG-13', ''], ['"The Lion King(1994)",88,G']]
您的代码没有什么特别的问题。
但是,您的 L
格式有误。
['"Detective Pikachu",104,PG', '']
里面只有2个元素。
元素 0
是 "Detective Pikachu",104,PG
元素 1
是 </code>。 </p>
<p>您应该修复 <code>getInput()
解析 movies.txt
的方式,或者更改您的函数以读取 L
。
此外,您应该 close()
使用后的文件。
第 L[i] = L[i].split('\n')
行不符合我的要求。您的数据行以逗号分隔,但您在末尾拆分了换行符。你可能想要:
L[i] = L[i].strip('\n').split(',')
但与其自己解析 CSV 文件,不如考虑使用 the csv
module from the standard library,它将为您处理大部分细节。