before: something = get_something() if something: do_something(something) after: if get_something() as something: do_something(something)