I want to create this tuple:
a=(1,1,1),(2,2,2),(3,3,3),(4,4,4),(5,5,5),(6,6,6),(7,7,7),(8,8,8),(9,9,9)
I tried with this
a=1,1,
If I were to imitate something like this, I would have done it in the following way:
a = tuple((n,n,n) for n in range(1,10))
print(a)
#((1, 1, 1), (2, 2, 2), (3, 3, 3), (4, 4, 4), (5, 5, 5), (6, 6, 6), (7, 7, 7), (8, 8, 8), (9, 9, 9))
This is the most simple and pythonic way to do this specific job.