Wenn ich ein Konstrukt wie dieses habe: def foo(): a=None b=None c=None #...loop over a config file or command line options... if a is not None and b is not None and c is not None: doSomething(a,b,c) else: print "A config parameter is missing..." Was ist die bevorzugte Syntax in Python, um zu...