for x,y in (range(3),range(3)):
print(x+','+y)
I wont a simple output of any pare of numbers something like that:
1,1
2,2
3,3
I get:
Traceback (most recent call last):
File "<pyshell#36>", line 1, in <module>
for x,y in (range(3),range(3)):
ValueError: too many values to unpack (expected 2)