input = """624740 472564
302351 352046
140377 467924
543374 702809
32247 639373
471765 936039
858222 888486
572519 290559
272907 485905
264087 638421
611105 673663
84899 176786"""
lines = input.splitlines()
print(lines)
import re
input = """
624740 472564
302351 352046
140377 467924
543374 702809
32247 639373
471765 936039
858222 888486
572519 290559
272907 485905
264087 638421
611105 673663
84899 176786
"""
lines = re.findall(r'(\d+ \d+)', input)
print(lines)
a = []
b = []
for line in lines:
a.append(int(line.split()[0]))
b.append(int(line.split()[1]))
print(sum(a), a)
print(sum(b), b)
import re
input = """
1 2
3 4
51 62
73 94
"""
result = re.findall(r'(\d+ \d+)', input)
print(result)
try:
_libname = _find_library('sndfile')
if _libname is None:
raise OSError('sndfile library not found')
_snd = _ffi.dlopen(_libname)
myplot = PlotCanvas() # Создаем экземпляр обьекта (из класса PlotCanvas)
myplot.plot() # Вызываем метод (процедуру)
как-то так
PS Когда обьект создается автоматически всегда вызывается __init__()
Разбирайтесь что у вас делает инит и что делает плот