You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the main strengths of Python is that it is somewhat similar to English, making it easy for a new contributor to understand existing code. It is therefore more cleaner and "Pythonic" to write
elif"arch"indistro:
instead of
elifdistro.count("arch") >0:
The text was updated successfully, but these errors were encountered:
One of the main strengths of Python is that it is somewhat similar to English, making it easy for a new contributor to understand existing code. It is therefore more cleaner and "Pythonic" to write
instead of
The text was updated successfully, but these errors were encountered: