Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Форматирование ввода #8

Open
dakone22 opened this issue Nov 23, 2022 · 0 comments
Open

Форматирование ввода #8

dakone22 opened this issue Nov 23, 2022 · 0 comments

Comments

@dakone22
Copy link

HasseDiagram/mainWindow.py

Lines 121 to 128 in 516bd62

A = list(map(str, re.split(r' *, *', ',' + self.edt_setA.toPlainText() + ','))) # Ввод числового множества
A = list(x for x in A if x != '')
R = []
R_raw = re.findall(r'\( *(\w+ *, *\w+) *\) *, *',
self.edt_setR.toPlainText() + ",") # Ввод бинарного отношения перечислением пар
for i in R_raw:
R_str = tuple(map(str, re.split(r' *, *', i))) # Преобразуем в пару строковых значений
R.append(R_str)

Вместо первой страшной строки, скорее всего, ты хочешь использовать метод строки split:

text = "1, 2, 3"
numbers = text.split(", ")  # == ["1", "2", "3"]

Если есть проблема с whitespace-символами в начале и в конце строки, то есть замечательный метод строки strip, который вернёт тебе строку без whitespace-символов в начале и конце.

>>> '   spacious   '.strip()
'spacious'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant