I found that when using "in list" function from list object.
the python will be add " - 1". So I need to add 1 to fix this problem.
I found that when using "in list" function from list object.
the python will be add " - 1". So I need to add 1 to fix this problem.
Can any one tell me how to do that?
Problem in list
Function: in list <item list> get # i
will generate str(itemlist[int(i - 1)])
When should add "-1" ?