Comments in python- Step1 To Code Like A Pro
Comments are nothing but the lines ignored by the python interpreter. To comment any line of code you just need to put a '#' hash mark before
This category includes basic python for absolute beginners.
Comments are nothing but the lines ignored by the python interpreter. To comment any line of code you just need to put a '#' hash mark before
Python supports majorly 3 types of numbers: integers(0-infinity, and all of them in negative), float(integers along with decimal/fraction numbers), and complex numbers(3+6j). Before we start remember this, you are a…
Type conversion simply means converting data from one data type(integer, string, list, tuple, dictionary, sets, etc) to another data. It is supported by most of the programming languages. Two types…
Have you ever heard of the word operation, in medical terms, say, heart operation? Can it happen without a knife🔪 and other tools💉💊🩺? Well, I am not a doctor but…
Hello Pythonistas, welcome back. As you know by now there are 6 types of operators in Python. We discussed the first 3 in the previous article. In this, we are…