Variables and Operators in Python
VARIABLES
Creating variables
Variables are a container for storing the data values.
Unlike other programming, languages python has no command for declaring a variable.
A variable is created the moment you first assign the value to it.
Code:
x = 5
y = "john"
print(x)
print(y)
Variables do not need to be declared with any particular type and can even change type after they have been set.
String variables can be declared either by using single or double quotes:
a = "John"
# is the same as
b = 'John'
Variable Names
A variable can have a short name (like x and y) or a more descriptive name (age, car_name, total_volume). Rules for Python variables:
- A variable name must start with a letter or the underscore character
- A variable name cannot start with a number
- A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
- Variable names are case-sensitive (age, Age, and AGE are three different variables)
Note:- Variable names are case-sensitive.
Assign Value to Multiple Variables
Python allows you to assign values to multiple variables in one line:
x, y, z = "Oranges", "Apples", "Mango"
print(x)
print(y)
print(z)
And you can assign the same value to multiple variables in one line:
x = y = z = "Oranges"
print(x)
print(y)
print(z)
Python Arithmetic Operators
Arithmetic operators are used with numeric values to perform common mathematical operations:
Python Assignment Operators
Assignment operators are used to assigning values to variables:
Python Comparison Operators
Comparison operators are used to comparing two values
Python Logical Operators
Logical operators are used to combining conditional statements.
Python Identity Operators
Identity operators are used to comparing the objects, not if they are equal, but if they are actually the same object, with the same memory location.
Python Membership Operators
Membership operators are used to testing if a sequence is presented in an object.
Python Bitwise Operators
Bitwise operators are used to comparing (binary) numbers.
Bonus:
Real Python:- Python Basic Data Types
Real Python:- Test your Basic Data types skills,
W3School:- W3School operators
Sanfound:- Sanfoundry Test your skills with MCQs

Comments
Post a Comment