I was trying to create a shortest-possible code for a puzzle, and the question came to mind trying to do something like this:
zip(l=[1,2,3,4,5],l[1:])
So I was wondering, is there a way to produce a value, assign it to a variable and use that variable on the very same line/function call?
EDIT:To clarify things, I am aware that this thing is not recommended nor good nor does it yield faster results. Also, the essence of the question is assignment and reusing of the same variable in the same function call. The list is produced using input, the static list here is for the example only. In a situation like this, I would like to avoid repeating the same task twice while I have already produced the result somewhere.
l = zip([1,2,3,4,5],[2,3,4,5])
. – Satchela=1;print(a)
. – Juniejunieta