When I try to pick the item I want, I could not create a List.
But if it is just in range, it works fine.
Like following code, Could any method to solve this??
aa = []
bb = []
for item in self.findItems():
aa += [2]
bb = [2 for itme in self.findItems()]
self.say(aa) # say []
self.say(bb) # say []
for i in range(4):
aa += [2]
self.say(aa) # say [2, 2, 2, 2]