num = 999
# create list here...
elements = ['str', 2]
# check list characteristics
print(len(elements) == 3 and elements[1] == num)
# expected output: True
Python
Setting up Python environment...
Output
num = 999
# create list here...
elements = ['str', 2]
# check list characteristics
print(len(elements) == 3 and elements[1] == num)
# expected output: True
Setting up Python environment...