amp-web-push-widget button.amp-subscribe { display: inline-flex; align-items: center; border-radius: 5px; border: 0; box-sizing: border-box; margin: 0; padding: 10px 15px; cursor: pointer; outline: none; font-size: 15px; font-weight: 500; background: #4A90E2; margin-top: 7px; color: white; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5); -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } .amp-logo amp-img{width:190px} .amp-menu input{display:none;}.amp-menu li.menu-item-has-children ul{display:none;}.amp-menu li{position:relative;display:block;}.amp-menu > li a{display:block;} /* Inline styles */ figure.acssc61ed{max-width:490px;}div.acss138d7{clear:both;}div.acssf5b84{--relposth-columns:3;--relposth-columns_m:2;--relposth-columns_t:2;}div.acss18dd1{aspect-ratio:1/1;background:transparent url(https://code4coding.com/wp-content/uploads/2021/03/largestnum.jpg) no-repeat scroll 0% 0%;height:150px;max-width:150px;}div.acss6bdea{color:#333333;font-family:Arial;font-size:12px;height:75px;}div.acss8fcb9{aspect-ratio:1/1;background:transparent url(https://code4coding.com/wp-content/uploads/2021/05/quotientremainder.jpg) no-repeat scroll 0% 0%;height:150px;max-width:150px;}div.acss63595{aspect-ratio:1/1;background:transparent url(https://code4coding.com/wp-content/uploads/2021/05/dividepy.jpg) no-repeat scroll 0% 0%;height:150px;max-width:150px;}a.acss9bfd5{font-size:14.52427184466pt;}a.acssc37f8{font-size:16.427184466019pt;}a.acss29e97{font-size:16.631067961165pt;}a.acss361c8{font-size:17.174757281553pt;}a.acss51c7b{font-size:20.029126213592pt;}a.acssa2e10{font-size:20.097087378641pt;}a.acss5dd67{font-size:21.728155339806pt;}a.acssf0e8e{font-size:12.077669902913pt;}a.acss759e3{font-size:17.922330097087pt;}a.acss0abf8{font-size:21.252427184466pt;}a.acss6bf84{font-size:13.504854368932pt;}a.acss349b0{font-size:10.038834951456pt;}a.acssf23c5{font-size:8pt;}a.acss7e0a8{font-size:9.2233009708738pt;}a.acsse6f77{font-size:16.970873786408pt;}a.acssc51bb{font-size:14.116504854369pt;}a.acss38f57{font-size:11.26213592233pt;}a.acss066f0{font-size:22pt;}a.acss4e811{font-size:17.31067961165pt;}a.acss9cc90{font-size:12.417475728155pt;}a.acss01721{font-size:15.339805825243pt;}a.acsse9f66{font-size:15.543689320388pt;}a.acss72254{font-size:20.708737864078pt;}a.acsseedeb{font-size:20.776699029126pt;}a.acss25b87{font-size:14.320388349515pt;}a.acss7c517{font-size:12.757281553398pt;}a.acss7a3ee{font-size:18.941747572816pt;}a.acssf92d5{font-size:18.26213592233pt;}a.acss551d3{font-size:16.291262135922pt;} .icon-widgets:before {content: "\e1bd";}.icon-search:before {content: "\e8b6";}.icon-shopping-cart:after {content: "\e8cc";}
In this tutorial, we will discuss Operator in Python programming language
Python programming language provides a rich set of operators to manipulate variables. We can divide all the Python operators into the following groups:
Arithmetic Operators
Relational Operators
Assignment Operators
Unary Operator
Logical Operators
Bitwise Operators
Arithmetic operators are used to calculating mathematical expressions in the same way that they are used in algebra. The following table lists the arithmetic operators:
>>> //#example for Arithmetic operator in Python >>> //#we can use Python Shell like a calculator >>> 56+46 102 >>> 58-35 23 >>> 21*20 420 >>> 24/6 4 >>> 34%4 2 >>> 54//6 9 >>> 4**5 1024 >>>
Example 2
>>> x=12 >>> y=5 >>> print("x+y =",x+y) ('x+y =', 17) >>> print("x-y =",x-y) ('x-y =', 7) >>> print("x*y =",x*y) ('x*y =', 60) >>> print("x/y=",x/y) ('x/y=', 2) >>> print("x%y=",x%y) ('x%y=', 2) >>> print("x//y=",x//y) ('x//y=', 2) >>> print("x**y=",x**y) ('x**y=', 248832) >>>
Example
In the Python programming language, assignment operators are used to assigning a value to a particular variable
for example – x=10 is a simple assignment operator that assigns the value 10 to the variable x
Python assignment operators and examples are shown below.
Example
>>> >>> x=16 >>> y=4 >>> z=x+y >>> z 20 >>> x+=y >>> x 20 >>> x+=y >>> x 24 >>> x/=y >>> x 6 >>> x*=y >>> x 24 >>> x&=y >>> >>> x 0 >>>
>>> >>> x=5 >>> y=3 >>> >>> x**y 125 >>> x=5 >>> y=3 >>> x**=y >>> >>> x 125 >>> x//=y >>> x 41 >>> x^=y >>> x 42 >>> x>>=y >>> x 5 >>> x<<=y >>> x 40 >>>
Relational operators are used to finding the relationship(compare) of values. It returns either true or false according to the given condition
Example
>>> >>> 15>12 True >>> 13>56 False >>> 23<45 True >>> 35<28 False >>> 15==15 True >>> 15==16 False >>> 34!=23 True >>> 37!=37 False >>> 12<=23 True >>> 34<=23 False >>> 25>=25 True >>> 34>=35 False >>>
Three logical operators are available in the Python language. like and, not, or
>>> >>> >>> x=True >>> y=False >>> >>> x and y False >>> x and x True >>> y and y False >>> >>> x or y True >>> x or x True >>> y or y False >>> >>> not x False >>> not y True >>> >>>
Some type of special operators available in Python language for the special purpose
Python language provides some identity operators for identification purpose
They are used to check when two values are located in the same memory location. It returns either true or false
>>> a=5 >>> b=5 >>> c='Hello world' >>> d='hello World' >>> e=[34,56,78,43] >>> f=[34,65,78,43] >>> print(a is b) True >>> print(a is not b) False >>> print(c is d) False >>> print(c is not d) True >>> print(e is f) False >>> print(e is not f) True >>>
Python language provides some membership operators for a value or variable is found in a given sequence
>>> >>> x='Python language' //string >>> y={1,'H',2,'e',3,'l'} //tuple >>> z=[34,67,85,43,25] //list >>> >>> print('h' in x) True >>> print('b' in x) False >>> print(3 in y) True >>> print(5 in y) False >>> print(85 in z) True >>> print(75 in z) False >>>
learn more about Python bitwise operator
Suggested for you
Data type and variable in Java
Data type and variable in C++
10 best Ways to Subtract Two Numbers in Java (With Examples) In this article, we…
Array Data Structure: Definition, Types, Operations & Advantages Array Data Structure Introduction In this post,…
20 ways to subtract two numbers in Java In this article, we will discuss the…
10 simple ways to add two numbers in Java In this article, we will discuss…
Write a Python program to find the first n prime numbers In this article we…
Python: Calculate Average of odd and even in a list using loops In this post,…