sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #35315
Re: [Question #272778]: Can list be an additional element?
Question #272778 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/272778
Status: Open => Answered
RaiMan proposed the following answer:
all these Python features work on the given list, but return None, hence
k = k.append(someThing)
will reset k to None.
so simply this:
k = [ .... ]
k.append(someThing)
--
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.