Source Code:
(back to article)
x = (1 + 2 + 3 + 4 + 5 + 6) y = [1, 2, 3, 4, 5, 6] z = {1: "eins", 2: "zwei"} print(x) print(y) print(z)
Result:
Report an issue