Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
from contextlib import closing from tqdm import tqdm total = len(divs) with closing(tqdm(total=total)) as pbar: for div in divs: # process div pbar.update(1)
class DetailView(generic.DetailView): template_name = "Blog/detail_post.html" model = Post
def start(): pass def begin(): pass switcher = { '/start' : start, 'начать' : begin } text = updates['message']['text'] action = switcher.get(text) if action: action()
data = [[1.2,5.5,3.3],[2.2,4.4,7.7]] size = sum(row[0] for row in data) print(size)