↧
Answer by wegrata for print dictionary minus two elements
if len(errdict) == 21: for k, v in errdict.items(): if k == 'packets output' or k == 'bytes': continue print(k, v) print()
View ArticleAnswer by Nick is tired for print dictionary minus two elements
if k == 'packets output' or 'bytes'This will always evaluate to true as 'bytes' is a truthy value, you need to compare k to both:if k == 'packets output' or k == 'bytes'Or more pythonically:if k in...
View Articleprint dictionary minus two elements
Python 3.6All debug output is from PyCharm 2017.1.2I have a program that gets to this portion of the code:if len(errdict) == 21: for k, v in errdict.items(): if k == 'packets output' or 'bytes':...
View Article