"""A demonstration of reassigning elements in a list"""

ell = [False, 1.0, 2, '3']
print(ell)
print(type(ell))
print('-----------------------------------------')

ell[0] = True
print(ell)
ell[1] = 'this replaced the float 1.0'
print(ell)

[0, 1, 2, 3][0] = True
print([0, 1, 2, 3])
