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 arrayvariable 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