How to check python version ? admin April 9, 2017 Python 0 Comments python -V Related Posts Python List Comprehensions zendnwar March 17, 2016 >>> sqr = >>> for i in range(10): sqr.append(i**2) >>> sqr 0, 1, 4, .. 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 ..