start_message = start_message.replace('username', message.chat.username)
username = message.chat.username if message.chat.username else 'noname'
start_message = start_message.replace('username', username)
if message.chat.username:
driver.execute_script("___grecaptcha_cfg.clients[0].C.C.callback()")
soup.find('body').contents
лежит body = soup.find('body').contents[1]
return body
body = soup.find('body').text
return body
<div>
<img alt="hello world" src="test.png"/>
{% if isHello==1%}
{{ hello }}
{% endif %}
</div>
***Repl Closed***
import requests
def revoke_access(chat_id, invite_link, revoke_after=2):
time.sleep(revoke_after)
params = {'chat_id': chat_id, 'invite_link': invite_link}
requests.get(f'https://api.telegram.org/bot{token}/revokeChatInviteLink', params=params)
@bot.message_handler(content_types=['text'])
def send_invite(message):
if message.text.lower() == 'привет':
invite_link = bot.export_chat_invite_link(chat_id)
bot.send_message(message.chat.id, invite_link)
Thread(target=revoke_access, args=(chat_id, invite_link)).start()
total
, чтобы не смущать подчеркиваниями.for n in range(1, 100):
if n % 3 == 0 and n % 7 == 0:
total += n
total += n
- это сокращенная запись total = total + n
, т.е. мы к нашей сумме прибавляем еще одно число (n). И так n будет поочереди принимать значения от 1 до 99