I'm new to Python. I've a question. Some one could help me.
I do the following in the command prompt:
>>> a=set()
>>> for i in range(0,8):
... a.add((i,j))
...
the answer that I get when I print it is like this:
>>> a
set([(2, 7), (4, 7), (6, 7), (5, 7), (7, 7), (0, 7), (1, 7), (3, 7)])
I understand that its printing out the results in the way its stored. But is there a way I can get it ordered? Say for example in this way:
(0,7), (1,7), (2,7), (3,7), ...
Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…