Quantcast
Channel: print dictionary minus two elements - Stack Overflow
Browsing latest articles
Browse All 3 View Live

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 Article


Answer 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 Article


print 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
Browsing latest articles
Browse All 3 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>