tuple assignment 2
What will happen when running the following code:
heights = (190, [200, 220, 250], 180)
heights[1][0] = 230
print(heights)What will happen when running the following code:
heights = (190, [200, 220, 250], 180)
heights[1][0] = 230
print(heights)