# create list here...
# check for list characteristics
print(len(elements) == 3 and 'hi' in elements)
# expected output: True
Python
Setting up Python environment...
Output
# create list here...
# check for list characteristics
print(len(elements) == 3 and 'hi' in elements)
# expected output: True
Setting up Python environment...