Open
Description
I write this:
a_list = [
1,
2
]
a_tuple = (
1,
2
)
a_dict = {
("a", 1),
("b", 2)
}
print a_list
print a_tuple
print a_dict
I expect this to evaluate to:
[1, 2]
(1, 2)
{'a': 1, 'b': 2}
But instead, only the last element is seen, and I get:
[2]
2
{'b': 2}
This bug can get very annoying if you want to nicely indent them, as you are forced to put them all in the same line.
Metadata
Metadata
Assignees
Labels
No labels