how to check python version in linux? zendnwar March 8, 2016 Python, Uncategorized 5 Comments It’s very simple: python –version or python -V Related Posts Python String Operations zendnwar May 8, 2016 Concatenation >>>’Zend’ + ‘Anwar’ Zendanwar >>>’ .. Python Lists as Stacks zendnwar March 17, 2016 >>> stack = 11,22,33,44,55,66,77 >>> stack.append(88) >>> stack 11, ..