リスト内のアイテムを削除しようとしています。 学生= [[ 'ボブ'、 '95']、[ 'グレッチェン'、 '90']]次のようにネストされたリスト内のアイテムを削除するには?
私のコードは次のとおりです。
elif menu == 3:
# Remove students
student_removal = input("Please enter the name of the student you would like to remove")
for s in student:
if isinstance(student, type(list)):
student.remove(student_removal)
if student != student_removal:
print("The student name you have entered is not in the grade book. Please choose a different option")
を代わりにそれを私のリストから項目を削除しますそれは単に私にprintステートメントを与えているだけです。私は間違って何をしていますか?
を試してみてください。 –