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

Условные операторы и тернарные операторы #6

Open
dakone22 opened this issue Nov 23, 2022 · 1 comment

Comments

@dakone22
Copy link

dakone22 commented Nov 23, 2022

if binary.is_reflexive():
self.lbl_reflex.setText(" • Рефлексивно!")
elif binary.is_irreflexive():
self.lbl_reflex.setText(" • Иррефлексивно!")
else:
self.lbl_reflex.setText(" • Нерефлексивно!")
self.lbl_symm.setText(
" • Симметрично!") if binary.is_symmetrical() else self.lbl_symm.setText(
" • Несимметрично!")
self.lbl_trans.setText(
" • Транзитивно!") if binary.is_transitive() else self.lbl_trans.setText(
" • Нетранзитивно!")
self.lbl_antisym.setText(
" • Антисимметрично!") if binary.is_antisymm() else self.lbl_antisym.setText(
" • Не антисимметрично!")

Это хорошо, что кто-то знает о тернарных операторах, но, может, ещё подумать?

if binary.is_reflexive():
    reflex_text = "Рефлексивно"
elif binary.is_irreflexive(): 
    reflex_text = "Иррефлексивно"
else:
    reflex_text = "Нерефлексивно"

self.lbl_reflex.setText(f"   • {reflex_text}!") 

Хотя бы можно же было

self.lbl_antisym.setText("   • Антисимметрично!" if binary.is_antisymm() else "   • Не антисимметрично!") 

Тернарный оператор ведь возвращает результат. (Хотя лучше и тут + тоже переделать, как я показал в первом примере)

И да, тут есть очень крутые штуки для форматирования строк: относительно старый метод строки format и новые, модные f-строки

@dakone22
Copy link
Author

HasseDiagram/mainWindow.py

Lines 93 to 107 in 516bd62

bin_class = binary.class_of_relation()
if bin_class == "unknown":
self.lbl_bin_class.setText("Не входит ни в один класс бинарных отношений")
if bin_class == "tolerance":
self.lbl_bin_class.setText("Толерантность")
if bin_class == "equivalence":
self.lbl_bin_class.setText("Эквивалентность")
if bin_class == "partial order":
self.lbl_bin_class.setText("Частичный порядок")
if bin_class == "preorder":
self.lbl_bin_class.setText("Предпорядок")
if bin_class == "strict order":
self.lbl_bin_class.setText("Строгий порядок")
if bin_class == "strict preorder":
self.lbl_bin_class.setText("Строгий предпорядок")

Думаю, тоже стоит чуть переделать

RozeQz added a commit that referenced this issue Dec 8, 2022
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