In order of priority global import * OR global import Codetest -- import * forever global deport * OR global deport Codetest -- un-imports * forever import * OR import Codetest -- imports all functions deport * OR deport Codetest -- un-imports all functions print(abc) -- prints the inside text randint(a,b) -- chooses a random number from a to b (inclusive) and prints it ; -- changes the index of the code being executed
you can do some pretty weird stuff when combining functions testing