x = 8.2 print(type(x)) x = 8 print(type(x)) x = "8" print(type(x)) x = [5, 6, 7, 8] x[2] = "seven" print(type(x)) x = (5, 6, 7, 8) # You can't change a tuple # x[2] = 9 print(type(x)) x = print x("x is the print function!") x(type(x)) La = [1, 2, 3] Lb = La print(Lb) La[2] = 17 print(Lb) La = ["frog", "tuna"] print(Lb) La = Lb La[0] = 42 print(Lb)