Skip to main content

Python Identity Operators

 

Python Identity Operators.





Operators

Description

Example

Is

Returns True If Both Same

A Is B

Is Not

Return True If Both Are Not Same

A Is Not B

Ex.

X = 22

Y = 25

print(X is Y)

print(X == Y)

print(X is not Y)

print(X != Y)


OUTPUT

False
False
True
True



Comments

Popular posts from this blog

Python Input and Type Casting.

  Main Key Points input() // for get userinput value int()    //  eval() // float()  // x =input("Enter Your age-") // 23 print(x) output 23 int() Type cast x = int(input("Enter Your age-")) // only enter integer value print(x) output 23 float() type cast x = float(input("Enter Your age-")) // 44 print(x) output 44.0 eval() type casting - any types of value converts x = eval(input("Enter Your age-")) // enter- 0b1111( 15 binary number) print(x) output 15

Python Username and Password using if .. else

 Easy ways to check username and password by using simple if else statement. Ex. username = "saransh" password = "Saransh77" x = input("enter your username- ") y = input("enter your password- ") if x == username: if y == password: print("Okay Right..!") else: print("please enter correct username or password.") OUTPUT

Reverse String In Python By Simple Methods

  x = "Code By Saransh" y = x[::-1] print(y) OUTPUT hsnaraS yB edoC