Contact: aviboots(AT)netvision.net.il
39,939 questions
51,876 answers
573 users
t = tuple(f"x{n}" for n in range(10)) print(t) ''' run: ('x0', 'x1', 'x2', 'x3', 'x4', 'x5', 'x6', 'x7', 'x8', 'x9') '''