[Solved] Python get instruction none [closed]
You can use the or operator to assign a “default value” to a variable. This works because a or b is equivalent to a if a else b. Thus you could write lista = GETLISTA() or some_default Notice, however, that this will also use some_default if GETLISTA() evaluates to an empty list [], or any … Read more