Nesting of conditional statements

You may think there is no more you must know of the conditional statement, well… You are wrong, there is another knowledge call nesting that must master. Perhaps you didn’t know that in a nested if construct, you can have an if…elif…else construct inside another if…elif…else construct. There may be a situation when you want…

If you click on this post…

This time we are going to see   the conditional if and how does it work. The conditionals statement performed different actions depending on how the boolean was evaluated false or true. The general form of the “if” statement is the follow. If BOOLEAN : STATEMENTS There are some important things to remember about the if…

Input = not so difficult

Hi again, today we are going to see how to make an input, it is actually not that hard so i think you won’t have any difficulties. So this is how it goes: Something = input ( whatever you want to ask) Then you can go like: Print = (“This” + Something + “ is…

Python’s Types of Data

Python has five standard types of data: Numbers Strings Lists Tuples Dictionary The number type data is used to store numerical values, this are created when you assign a value to the object. var1 = 5 var2= 15 Pythons support four different numerical types: int ( signed integers ) long ( long integers, they can…

Print (Programing + Math)

This time we are going to see how to write and run basic math operations in Python, first we have to know the signs: “+” is for summing “-” is for subtracting “*” is for multiplying “/” is for dividing “%” is for the remain of the division Let’s start, for the past operations it doesn’t…