Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python: avoiding if condition for this code?

for the following code

a =func() if a != None:     b.append(a) 

a can be assigned to None, is there a way to avoid the if statement and only use one line of code?

original problem is the following

import xml.etree.ElementTree as etree  r = etree.parse(f).getroot() b = etree.Element('register',{})  a = r.find('tag_name') # a may get None if did not find it if a != None:     b.append(a) 

ok, I used all the answers and got this, personally I think it's the most complex python I have ever wrote so far, lol

NS_MAP = {     'spirit' : 'http://www.spiritconsortium.org/XMLSchema/SPIRIT/1.4',     'app' : 'http://www.app.com/SPIRIT-app'     }  mp=etree.Element('MemoryProperty', {'version':'alpha'}) mpt=etree.ElementTree(mp)   def copy_tags(tp, op, p, tn, ns='spirit'):     c =  p.find('{%s}%s'%(NS_MAP[ns],tn))     if c is not None:         (op == '<-') and tp.append(c)         return c      for reg in regs:     te = etree.Element('register',{})     copy_tags(te,'<-',reg,'name')     copy_tags(te,'<-',reg,'addressOffset')     copy_tags(te,'<-',reg,'access')     (lambda e, t: copy_tags(te,'<-',t,'usageConstraints',ns='app') if t is not None else None)(te, copy_tags(te,'|',reg,'vendorExtensions'))      mp.append(te)  mpt.write('map_gen.xml') 
like image 353
Jerry Gao Avatar asked Jan 11 '12 20:01

Jerry Gao


People also ask

How do you skip an if statement in Python?

Exit an if Statement With break in Python The break is a jump statement that can break out of a loop if a specific condition is satisfied. We can use the break statement inside an if statement in a loop. The main purpose of the break statement is to move the control flow of our program outside the current loop.

What can I use instead of multiple if statements in Python?

Python Nested if statementselif...else statement inside another if... elif...else statement. This is called nesting in computer programming. Any number of these statements can be nested inside one another.


2 Answers

If you can call func() beforehand, and you want to combine the test and assignment statements into a single statement, then you can do this, with an if-else expression:

b += [a] if a is not None else [] 

If a is not None, then this will add [a] to b -- essentially the same operation as b.append(a)

If a is None, then this will add [] to b, which will leave b unchanged.

This won't work unless b is a list, or at least supports "+=" in-place addition. If it doesn't -- perhaps it's some custom object, then you should be able to do this:

(b.append(a) if a is not None else None) 

This is an expression, evaluated for its side effects, and then thrown away. If a is None, then the b.append(a) call will never be executed. In either case, the value of the expression is None, but we don't care about it, so it gets ignored.

Now, if you want to combine the func() call with this, then you'll have to do something different in order to avoid calling func twice. If you can use the "+=" syntax, then you can do it like this:

b += filter(None, [func()]) 

filter(None, <list>) returns the list with all false elements (None included, but also 0 and []) removed. This statement, then, will add either [func()] or [] to b.

[Edited]

Finally, for the worst case scenario: If you can't call func() more than once, and you can't use b += <list>, and you need to accept 0, "", [], etc, and only exclude None, and you need it all on one line, here's the ugliest line of code yet:

(lambda l, a: l.append(a) if a is not None else None)(b, func()) 

This is essentially @ekhumoro's solution, compressed into one line. It defines an anonymous function, calls it, discards the value, and then discards the function, all for the sake of the side effect.

Now, this is a single line, but it's certainly not easier to read or understand than the original code. If I were you, I'd stick with the original, or go with @ekhumoro's idea of just defining a helper function and using that.

like image 150
Ian Clelland Avatar answered Sep 20 '22 08:09

Ian Clelland


python 3.8 walrus operator

if a := func(): b.append(a) 
like image 32
Lucas Vazquez Avatar answered Sep 23 '22 08:09

Lucas Vazquez