connection = sqlite3.connect('db.db')
cursor = connection.cursor()
time_range = cursor.execute('SELECT time_range FROM channel WHERE name=?', ('ss',)).fetchone()[0]
print(time_range)
random.uniform(*time_range)
random.uniform(*time_range)
TypeError: Random.uniform() takes 3 positional arguments but 13 were given
Выводит через принт: 43200, 50400