Skip to main content

Operators in Python


Operators are the special symbol which is used with operands and generate output.
OperatorsDescription
//Perform Floor division(gives integer value after division)
+Used for addition
-Used for subtraction
*Used for Multiplication
/Used for Dividion
%To return remainder
**Perform exponent(raise to power)
<Less than
>Greater than
<=Less than or equal to
>Greater than or equal to
==Equal to
!=not equal to
<>Not equal to(same like !=)
=Assignment
/=Divide and Assign
+=Add and assign
-=Subtract and Assign
*=Multiply and assign
%=Modulus and assign
**=Exponent and assign
//=Floor division and assign
andLogical AND(When both conditions are true output will be true)
orLogical OR (If any one condition is true output will be true)
notLogical NOT(Compliment the condition i.e., reverse)
inReturns true if a variable is in sequence of another variable, else false.
not inReturns true if a variable is not in sequence of another variable, else false.
isReturns true if identity of two operands are same, else false
is notReturns true if identity of two operands are not same, else false.

Comments

  1. "//" intha symbala pathi konjam solunga???

    ReplyDelete
    Replies
    1. இரண்டு அல்லது அதற்கு மேற்பட்ட value-வினை வகுக்கும் போது கிடைக்கின்ற ஈவு ஆனது float ஆக இல்லாமல் integer ஆக இருக்கின்ற மதிப்பினை floor division என்கிறோம்.இதன் operator(//) என்பதாகும்.
      a=50
      b=20
      answer=2

      Delete

Post a Comment

Popular posts from this blog

SQL Commands

SQL Commands SQL Commands  are mainly classified into four types, which are DDL command, DML command, TCL command and DCL command. SQL is mainly divided into four sub language Data Definition Language(DDL) Data Manipulation Language(DML) Transaction Control Language(TCL) Data Control Language(DCL) Only for remember You can easily remember all these SQL command like below; DDL Commands:  "dr. cat" d-drop, r-remane, c-create, a-alter, t-truncate. DML Commands:  "sudi". s-select, u-update, d-delete, i-insert. TCL Commands:  These commands are related to transaction, commands are: Commit, Rollback, Savepoint

Python - Function

Define Function in Python Function is block of codes. Python provide built-in and user define both types of function. Built-in function User defined function Built-in function This type of functions are pre-defined, you can directly use in your program. For example  print function is used for display message on screen or console. Print hello world in python a = "Hello World!" print a User defined function This type of functions are defined by programmer. According to your requirement you can defined you function name and it's functionality. In python you can define any function by using  def keyword. Syntax for define function in python def function_name ( parameter ) function body Define function in python def my_function(fname): print(fname + " Refsnes") my_function ("Emil") my_function ("Tobias") my_function ("Linus") Output Emil Refsnes Tobias Refsnes Linus Refsnes Explanation

Frames

A framed page is actually made up of multiple HTML pages. There is one HTML document that describes how to break up the single browser window into multiple windowpanes. Each windowpane is filled with an HTML document. Frame Page Architecture §   A <FRAMESET> element is placed in the html document before the <BODY> element. The <FRAMESET> describes the amount of screen real estate given to each windowpane by dividing the screen into ROWS or COLS . §   The <FRAMESET> will then contain <FRAME> elements, one per division of the browser window. §   Note: Because there is no BODY container, FRAMESET pages can't have background images and background colors associated with them. Frame Page Architecture <HTML> <HEAD> <TITLE> Framed Page </TITLE> <FRAMeSET COLS=“23%,77%”> <FRAME SRC=“Doc1.html”> <FRAME SRC=“Doc2.html”> </FRAMeSET > </HEAD> </HTML>