Rajesh Sinha

[ Intern at Padhle.com ] I am a software developer working especially with python and JAVA. I believe I can learn new skills from everyone and from every work. I have uploaded my work samples in my GitHub repository.

Lists – Control Structure In Python – Free Python Tutorial

List,Though Lists are not a part of Python Control Structure, we can’t complete our study of Python Control Structure without the knowledge of Lists. List is a very important part of Python programming. What is List in Python? Lists are a type of object in Python. They are used to store an indexed list of items …

Lists – Control Structure In Python – Free Python Tutorial Read More »

While Loop – Control Structure In Python – Free Python Tutorial

While loop is one of the most used loops in almost languages. An if statement is run once if its condition evaluates to True, and never if it evaluates to False. Whereas a while statement is similar, except that it can be run more than once. The statements inside it are repeatedly executed, as long as the condition holds. Once the condition …

While Loop – Control Structure In Python – Free Python Tutorial Read More »

Boolean Logic with Boolean and Comparisons – Free Python Tutorial

Boolean Logic, As we all know, there is a type of variables available in Python, which is of Boolean type. A boolean type variable can have only two possible values, ‘True’ and ‘False’. Note that, as Python is a case-sensitive language so if we assign the values as ‘true’ and ‘false’ to a boolean type variable, …

Boolean Logic with Boolean and Comparisons – Free Python Tutorial Read More »

Operator Precedence and NOT Operator in Python – Boolean Logic – Free Python Tutorials

Operator Precedence Operator precedence is a very important concept in programming from a programmer aspect. Python’s order of operations is the same as that of normal mathematics: parentheses first, then exponentiation, then multiplication/division, and then addition/subtraction. The following table lists all of Python’s operators, from highest precedence to lowest :               Operator …

Operator Precedence and NOT Operator in Python – Boolean Logic – Free Python Tutorials Read More »

Boolean logic – OR operator – Control Structure In Python

  Boolean Logic in Python, As we all know, there is a type of variables available in Python, which is of Boolean type. A boolean type variable can have only two possible values, ‘True’ and ‘False’. Note that, as Python is a case-sensitive language so if we assign the values as ‘true’ and ‘false’ to a …

Boolean logic – OR operator – Control Structure In Python Read More »