Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 23, 2021 04:00 am GMT

Learning Python- Basic course: Day 3, Operators and If-elif-else

Welcome all to the day 3 of our course. Today we will learn about operators and the if-else control flow.

Operators in Python-
image

Operators in Python are nearly the same that of other languages like C or Java.

There are, although a few differences as highlighted below-
1) The // operator is added in Python. This operator divides the number and rounds it down to the nearest integer.
2) The ** operator is the exponentiation operator, which raises the number to the power of a number.
3) The //= and **= assignment operators have also been added similarly. (For those unfamiliar with the assignment operators, x+=1 is equivalent to x=x+1 and so on for other signs)
4) Logical operators too exist in Python, but unlike symbols &,|,! in C, they are replaced by "and", "or", "not" in Python. This again makes it easier to read and comprehend

Bitwise operators are similer as C, though not used much. Membership and identity operators will be covered later along with lists.

>>> #Arithmatic operators>>> a=2>>> b=3>>> a+b5>>> a-b-1>>> a/b0.6666666666666666>>> a//b0>>> a*b6>>> a**b8>>>#Assignment operators>>> a=+1>>> a1>>> a=2>>> a=+1>>> a1>>> a=a+1>>>>>> a+=1>>> a3>>> a-=2>>> a1>>> a*=3>>> a3>>> a/=3>>> a1.0>>> b**=3>>> b27>>> b//=2>>> b13>>> #relational operators>>> 1>2False>>> 1<2True>>> 1==2False>>> 2==2True>>> 2!=3True>>> 3!=3False>>> 3>=3True>>> 3<=3True>>> #logical operators>>> 1==2 and 2==2False>>> 1==2 or 2==2True>>> 1<2 and 2<3True>>> not 2==3True>>> not 2==3True>>> (1<2 and 2<3 ) or 3==4True

if-else in python.
The if else statement works as follows-The "if" condition is checked, if the condition unsatisfied, the actions in the indentation are skipped and if "else" succeeds the "if" condition, then the statements below "else" are executed if.
Logic of the if-elif-else statement-

if condition_1:#execute if condition_1 is True...elif condition_2:#execute if condition_1 is false and condition_2 is True...else:#execute only if both condition_1 and condition_2 are False...

Unlike C, in Python we do not have to cover the conditions in any parentheses. However I personally feel that the brackets feel neat if added and prevent any confusion. The curly braces in C are replaced by indentation in Python. The "elif" in Python is same as else if in other languages.

Here is a sample program which checks if a number is positive, negative or zero.

a=int(input("Enter a number "))if a>0: print(a,"is a positive number")elif a<0: print(a,"is a negative number")else: print(a,"is zero")

Another sample program to find the number of digits of a number not more than 5 digits.

a=int(input("please enter a number "))if(a<10):    print(" 1 digit number")elif(10<a<100):    print(" 2 digit number")elif(100<a<1000):    print(" 3 digit number")elif(1000<a<10000):    print(" 4 digit number")else:    print(" 5 digit number")

Execise- 1) There is a bug in the sample program for finding number of digits. Can you fix it? Answer
2) Modify Sample program 1 to print if a number is odd even along with positive and negative. Answer
3) Quadratic equation- values of a,b,c are inputted. Find any one root if exists, else print doesn't exist. Answer. This exercise will test the operators as well as the if-else.

To be continued....

So friends that's all for this part. Hope you all are enjoying. Please let me know in the comment section if you liked it or not. And don't forget to like the post if you did. I am open to any suggestions or doubts. Just post in the comments below or gmail me.
Thank you for being so patient.


Original Link: https://dev.to/aatmaj/learning-python-basic-course-day-3-operators-and-if-elif-else-51cc

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To