ID:187002
 
Whenever I am writing code, and working with lists, I have this awful habit of referencing the list like this:

var = list(item_in_list)

When, instead it should be this:

var = list[item_in_list]

Does anyone else do this? It just seems like such an easy mistake to make. Wonder if I'm the only one who gets frustrated with it.

=$= Big J Money =$=
Nah - Too used to arrays in C++ :P

~Kujila
I like to use var/list/bleh=list(blah)... easier for me.
I never use brackets. Only time I've ever used brackets with lists were with Forumlib and maybe Kunarklib.