On Sun, Nov 30, 2014 at 12:30 PM, ThomasTheDjangoFan
<[email protected]> 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 [email protected].
To post to this group, send email to [email protected].
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.

Reply via email to