Pankaj Kumar

Pankaj Kumar

I have been working on Python programming for more than 12 years. At AskPython, I share my learning on Python with other fellow developers.
Python List Thumbnail

Python List – 15 Things You MUST Know

Python has four built-in data types data, set, tuple, dictionary, and list. These data types can store multiple collections of data. A set is an unordered collection of data, it is iterable, mutable, and has no duplicate elements. A tuple…

Python Tuple – An Immutable Sequence

Python tuple is an immutable sequence. The tuple is created with values separated by a comma. Since a tuple is immutable, we can’t add or delete its elements. If the tuple elements are not immutable, their properties can be changed.…

Python continue Statement

Python continue statement is used to skip the execution of the current iteration of the loop. We can’t use continue statement outside the loop, it will throw an error as “SyntaxError: ‘continue’ outside loop“. We can use continue statement with for…