def one (what): print("one " + what)def two (what): print("two " + what)number = onedef main (two): if (two): number = two number("is a number")