Tuple-Zuweisung 2
Was passiert, wenn der folgende Code ausgeführt wird:
heights = (190, [200, 220, 250], 180)
heights[1][0] = 230
print(heights)Was passiert, wenn der folgende Code ausgeführt wird:
heights = (190, [200, 220, 250], 180)
heights[1][0] = 230
print(heights)