blob: 70282aa97ebf57e1b86c307c41c9665bd560cf65 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
i = iter(iter((1, 2, 3)))
print(list(i))
i = iter(iter([1, 2, 3]))
print(list(i))
i = iter(iter({1:2, 3:4, 5:6}))
print(sorted(i))
i = iter(iter({1, 2, 3}))
print(sorted(i))
|