Sunday, November 30, 2014

Re: Python: Assign variable in if statement?

On Sun, Nov 30, 2014 at 12:30 PM, ThomasTheDjangoFan
<stefan.eichholz.berlin@googlemail.com> wrote:
> Hi guys,
>
> coming from php I am wondering if there is a way to do something like this
> in Python/Django:
>
> if variable = get_a_value_from_function():
> new_stuff = variable
>
> Of course I can use
>
> variable = get_a_value_from_function()
> if variable:
> new_stuff = variable
>
> But is there a shortcut similar to php?

perhaps something like:

new_stuff = get_a_value_from_function() or get_a_value_from_other_function()


--
Marc

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CA%2BDCN_vyFaoiukS9WYRLJWuenQT2Pzmpu%2BsdkuJC1k4wvC344Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment