enumerate
, увеличивая получаемый индекс на 1 (благодаря любезной подсказке Михаил Кростелев, можно не увеличивать на 1, а просто стартануть с 1, используя необязательный параметр start
), и печатая строку за строкой, подставляя в шаблон строки индекс и собственно соответствующее значение.for line in f:
, превратить в функцию, которая принимает line
и filename
(который либо “robot” либо “sitemap”), естественно, подставляя line
и filename
куда надо в коде, а в остальном функция должна практически повторять всё, что в коде. Ну и вызывать эту функцию дважды для каждого line
, подставляя то robot
то sitemap
. Ohh. Now I read the original issue more carefully (sorry!). Indeed that documentation line is wrong. .get_input_entity is intended when you're going to use the input version of something, not to just get the ID. If you just want the ID of yourself you should use client.get_me(input_peer=True).user_id instead. It should not be changed though because the method is fine, it returns an InputPeer (which might not have the ID).
if gender == "male" or "Male":
from sympy import sympify, SympifyError
def show_error(error=None):
if error is not None:
print(f'ошибка {error}')
else:
print(f'ошибка')
def calculate():
try:
print(f'result: {sympify(input("ввод: "))}')
except SympifyError:
show_error()
except NameError:
show_error()
except TypeError:
show_error()
except Exception as e:
show_error(e)
while True:
calculate()
# | articles | categories
————————————-————————————-
1 | article_1 | category_1
2 | article_1 | category_2
3 | article_1 | category_3
from bs4 import BeautifulSoup
data = '''
<td class="p3">
<div data-tooltip='QWERTY' class='ToolTip'>12345</div>
</td>'''
soup = BeautifulSoup(data,'html.parser')
div = soup.find('div') # тут вы уж сами найдите нужный вам div, я просто моделирую типа мы его нашли.
tag = 'data-tooltip'
print(div.attrs[tag])
'prodolzhit' == 'v'
prodolzhit- назовите её
cont(contunue не надо, это используется в языке).
while True:
import re
def split_by_pattern(string, pattern):
return list(filter(None, re.sub(pattern, r'@@\1', string).split('@@')))
if __name__ == '__main__':
data = '''28.03.22, ПН
08:30 - 10:00 Предмет_1
10:10 - 11:40 Предмет_2
29.03.22, ВТ
08:30 - 10:00 Предмет_1
10:10 - 11:40 Предмет_2'''
my_pattern = r'(([\d]{2}\.){2}[\d]{2})'
print(split_by_pattern(data, my_pattern))
items = [] # Пустой список
for nomination, state in btn_ass.items():
items.insert(0,MyButtons(nomination, state)) # добавляю в список
print(items[0].state)