A program can also import only part of a library by using the from
keyword, as in:
from random import choice
Classes, functions, and variables imported this way can be referred to without mentioning the library name:
print(choice([True, False]))
Fill in the placeholders so that the actual outputs match the expected outputs.