test_list = ['cat', 'dog', 224, False] test_list[2] = 225 print(test_list[1], test_list[3], len(test_list))
dog False 4
cat False 3
dog True 4
225 False 4