by Pawan Arora | Mar 23, 2020 | BCA, BTech, Computer Science, CS Python, Education
Is there a data type for handling dates in python? No. Python does not provides any special data type for handling dates in Python. But that does not mean, you can’t play with dates while programming in Python. In this post you will learn: What is Python module...
by Pawan Arora | Mar 8, 2020 | CBSE, Computer Science, CS Python, Informatics Practices
Unlike ‘pass’, ‘none’ is a keyword in python and not a statement. You must have observed specially CS and IP students – in programming we use null to represent absence of a value. What exactly does keyword ‘None’ do in python?...
by Pawan Arora | Mar 7, 2020 | CBSE, Computer Science, CS Python, Informatics Practices
In python ‘pass’ is a keyword as well as a complete statement in itself. There could be a situation while programming that you want to implement some code in the form of a function or a loop but in future i.e. some time later. Choice is that you can omit...