Python Forum
list index out of range
Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
list index out of range
#2
Good try.

It is not usual in python to have a capital at the start of a variable name.

I've only had a quick look through your code, but I can't see where you've initialised your grade list (the results) in order to do any analysis on it, thus you are attempting to loop through an empty list. You need a line to set some test data for now.

Incidentally, with your menu, why bother converting to integer, just test for "0", "1", etc. The while loop can be simpler: while True: and do a break if not input: (as an non-null string is True.

The part of your code outside of functions is a little hard to read. Might be worth moving code into more functions so that it is easier to follow the flow/logic.
I am trying to help you, really, even if it doesn't always seem that way
Reply


Messages In This Thread
list index out of range - by DrPengin - Nov-09-2017, 08:00 PM
RE: list index out of range - by gruntfutuk - Nov-09-2017, 08:35 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to fix list index out of range longmen 26 6,223 Apr-27-2022, 05:46 PM
Last Post: deanhystad
  list index out of range OliverG 3 2,379 Sep-03-2021, 12:04 AM
Last Post: itsmycode
  Index List a04j 2 2,953 Jul-10-2021, 01:14 PM
Last Post: BashBedlam
  List index out of range when turning CSV into dict ranbarr 15 6,581 May-12-2021, 10:38 AM
Last Post: ranbarr
  List vs index: Frederico_Caldas 5 3,666 Jul-03-2020, 10:55 AM
Last Post: DeaD_EyE
  To find the index of the first occurrence of the key in the provided list Angry_bird89 4 3,304 Jun-20-2020, 06:53 PM
Last Post: Angry_bird89
  list index out of range mcgrim 2 2,943 May-25-2019, 07:44 PM
Last Post: mcgrim
  IndexError: list index out of range abdullahali 4 3,933 Jan-17-2019, 07:54 AM
Last Post: buran
  String index out of range felie04 2 5,581 Aug-17-2018, 11:18 PM
Last Post: felie04
  Accessing data in zip - Index out of range pythoneer 24 12,958 Mar-15-2018, 06:19 PM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020