据我所知,我们可以使用 not 运算符并用 not 运算符重写 if 语句(或反转所有符号)!但是由于我的代码在一个带有许多和运算符的 if 语句中有 10 多个条件,这似乎使我的代码重复且难以阅读。如以下示例:
If a>b and A>B and R<w<a<Q and ....
# Else case is just reverse like this
Elif a<b and A<B and R>w>a>Q and ... # Thanks for @bOb for correct the syntax of this example
# I can not use just single Else without rewrite all condition (code will know a<b or A<B and ...)
任何人有任何想法来清理这段代码?或者只是保持安全的方式是重写所有内容>感谢您的帮助!
Helenr
MYYA
相关分类