6

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.

13
  • 1
    You do realize that shorter code doesn't necessarily yield faster execution, right? So what exactly is your motivation for creating this obfuscated code? Commented Aug 28, 2016 at 12:29
  • 2
    My question is solely by curiosity, the motivation was creating a one line code, just because, and who knows if one might decide to use this in his own code. I know that the above is not in the lines of proper programming of course. I am just aiming for shortest, not fastest, code. Commented Aug 28, 2016 at 12:31
  • 1
    BTW, for the given example, you could simply write l = zip([1,2,3,4,5],[2,3,4,5]). Commented Aug 28, 2016 at 12:32
  • You can: a=1;print(a). Commented Aug 28, 2016 at 12:32
  • 1
    I could, but the list is created by other init, the list here was just for the example. Commented Aug 28, 2016 at 12:33

5 Answers 5

5

You can use lambdas and default arguments to code golf this. Stressing that this shouldn't be used in production code, but just demonstrating what is possible in python.

(lambda l=[1, 2, 3]: zip(l, l[1:]))()
Sign up to request clarification or add additional context in comments.

3 Comments

That's definitely better than my code. But I don't do a lot of golfing. :)
@PM2Ring I only know about it from when looking up ways in which eval can be "hacked" to allow arbitrary execution (including imports). I've just looked at my answer and the default argument isn't even necessary.
Yes, you'd save 1 char by passing the list as a normal arg to the lambda.
3

Here is one hack, but not pythonic. Actually since all you need is creating an object in global namespace you can simply update the namespace by your intended object.

>>> zip(globals().update(a=[1, 2, 3]) or a, a[1:])
[(1, 2), (2, 3)]

Since the update() attribute returns None, its logical or with the object would be the object itself.

4 Comments

Correct me if I'm wrong, but using non-wierd code, for a = [1,2,3] the result of my zip([1,2,3],[1,2,3][1:]) would be [(1,2),(2,3)].
@ŁukaszRogalski Indeed!
And if you're not in the global scope? What then?
@TigerhawkT3 First off, the local namespace is always inside the global scope after enclosing scopes (if there is any) so when you update the global namespace you can simply access the object in local namespace too, but If you mean what if we only want to change it in local namespace,basically there is no need for such tasks, when 1. you can simply create your objects by assignments, and 2. you can pass is as an argument. And if the function (or any local object) as been created already, you can read stackoverflow.com/questions/1142068/…
2

If this is a code golf thing so it must be a single statement, then this works in Python 2:

print[zip(l,l[1:])for l in[[1,2,3,4,5]]][0]

output

[(1, 2), (2, 3), (3, 4), (4, 5)]

Otherwise,

l=[1,2,3,4,5];print zip(l,l[1:])

is shorter, and far more sensible than the list comprehension abuse shown above.

Many languages in the C family permit assignment to variables inside expressions. This can be convenient but it has also led to numerous bugs, and most modern compilers will generate warnings if an assignment is detected inside an if condition (for example).

It was an intentional design decision to not allow that sort of thing in Python. Thus a Python assignment statement is not an expression, and so it doesn't have a value.

BTW, the Python data model is quite different to that of many other languages. Python doesn't really have variables that are containers for values, it has objects that may be bound to names.


Note that in Python 3 zip returns an iterator, not a list, so if you want to produce a list you'd need to wrap the zip call with list().

2 Comments

Gonna keep the accepted to Kasramvd, since his solution is more generally applied, but yours is far better regarding lists.
@NoobDoob: No worries, but as Kasra & Łukasz have already said, doing stupid tricks like that with globals() is not a good idea.
2

With Python 3.8's the introduction of [PEP 572] Assignment Expressions you are now allowed to assign and use a variable on the same line with the syntax of NAME := EXPR:

zip(l:=[1, 2, 3, 4, 5], l[1:]) 

This sets the value of l to [1, 2, 3, 4, 5] before running zip(l, l[1:]) without having to do the long way of:

l = [1, 2, 3, 4, 5]
zip(l, l[1:])

Comments

1

Of course, you can always do this:

l = range(1, 6); zip(l, l[1:])

but I guess that's not what you wanted. :-)

There is a relatively clean way

(lambda l: zip(l, l[1:]))(range(1, 6))

BTW that function is defined in itertools recipes as pairwise, so pairwise(range(1, 6)) is probably the most direct way. You only need to write an import hook that imports Python functions from web pages. :-D

And there is a nice convoluted way

next(zip(l, l[1:]) for l in [range(1, 6)])

If you want more ideas, just say so. :-)

P.S. Of course, since Python got the walrus operator, those questions got their canonical answer and stopped being interesting. But in the interest of completeness, I thought I'd write it here.

zip(l:=range(1,6), l[1:])

1 Comment

Didn't have a real need to accomplish through this question, but I'm glad it resulted in many nice ideas being presented :) I learned a good bit of information and new ways with this

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.