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
2 Posted Topics
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]
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.
The End.
paxton91