SELECT
COUNT(table.id) AS num_id
FROM table
в num_id
будет твой ответ. name = ['airitihiuir']
print(name[0][::2])
name = ['airitihiuir']
for index in range(len(name[0])):
if index % 2 == 0:
print(name[0][index], end='')
Как взять из списка нужные символы?- Вопрос скорее всего должен звучать так:
Как взять из элемента списка нужные символы?
import asyncio
from time import time
els = list(range(20))
async def rm_list(v):
await asyncio.sleep(5)
print(v)
async def _main():
await asyncio.gather(*(
rm_list(value) for value in els
))
start = time()
loop = asyncio.get_event_loop()
loop.run_until_complete(_main())
loop.close()
print(time() - start)