Libraries are imported using the import
keyword, as in:
import random
which imports the random
library. Once imported, the classes, functions, and variables from the library
can be referred to by dot notation:
print(random.choice([True, False]))
Fill in the placeholders so that the actual outputs match the expected outputs.