Python continue zendnwar April 16, 2016 Python 0 Comments >>> for var in “zend-anwar”: if var == “-“: continue print (var) output– z e n d a n w a r Related Posts Difference between lamda and def in Python zendnwar March 18, 2016 def can contain multiple expressions whereas lamda is a single expression function def creates .. How to check python version ? admin April 9, 2017 python -V ..