Dynamically generate 10 pieces of data, each data has two variables, how to achieve?

I want to insert 10 pieces of data into the array

users_values.append((i, 75, 1, x[j] + ".mp4",
                 str(uuid.uuid1()) + ".mp4", "abc", "2018-08-01 06:21:37", "2018-08-01 06:21:37", 0,
                 0))

10 pieces of data look like

variable x [j]

Sequential values x = ["a", "baked," cached, "dumped," e"]

from this array

variable I is from 828 to 837

for i in range (828,837,1)

my general idea is this

users_values = []
            x = ["a", "b", "c", "d", "e"]
            for j in x:
                (i, 75, 1, x[j] + ".mp4",
                 str(uuid.uuid1()) + ".mp4", "abc", "2018-08-01 06:21:37", "2018-08-01 06:21:37", 0,
                 0)
            for i in range(828, 837, 1):
                (i, 75, 1, x[j] + ".mp4",
                 str(uuid.uuid1()) + ".mp4", "abc", "2018-08-01 06:21:37", "2018-08-01 06:21:37", 0,
                 0)
                users_values.append()

how to implement

Apr.03,2021

The expression of

is not very clear. Do you want to cycle the values in ['await,' baked, 'clocked,' dumped,'e'] ?

import uuid
from itertools import cycle

cs = cycle(['a', 'b', 'c', 'd', 'e'])
users_value = []
for i in range(828, 838):
    value = (i, 75, 1, next(cs) + '.mp4', str(uuid.uuid1()) + '.mp4', 'abc', '2018-08-01 06:21:37', '2018-08-01 06:21:37', 0,0)
    users_value.append(value)
Menu