I am trying to write a one liner, but it requires the random library.
import random
print(random.choice(["Red team","Blue team"]))
is there any correct syntax that could say something like
print(__import__(random).choice(["Red team","Blue team"]))
or
with open('random') as r: print(r.choice(["Red team","Blue team"])))