Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~939 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for Tyler212

You are not appending the list anywhere. Computer see's list as nothing See's someone needs to input something See's something being printed See's that for every interation it will print a list of nothing And then see's more user input. [CODE]list.append(raw_input("\n Enter you top 5 favorite games: ")[/CODE]

Member Avatar for JoshuaBurleson
-1
216
Member Avatar for david_wislon

I was getting this error a lot in the past. I was always able to fix this error using range(len(list)). Example: [CODE]for i in range(len(list)):[/CODE] I have really only noticed this with lists though, I think adding range to where you use list (path) should solve this issue.

Member Avatar for paxton91
0
723

The End.