Python type casting and operators

Python type casting and operators

Python type casting and operators

Let us see about Python type casting and operators.

  1. Python Type casting
  2. Python Operators

Watch on YouTube: https://youtu.be/cit6jKwKY1o

Learn Python in Tamil | பைதான் மொழியைக் கற்றுக்கொள்ளுங்கள் – Python type casting and operators.

Python type casting

We know Python is not strict with the data type declaration of variables. What makes the need of type casting? Let us see below

# weather.txt
{
  "id": 2345,
  "city": "Chennai",
  "weather": "20",
  "unit": "Celsius"
}

Consider there is a weather API, upon calling it whose response will be in JSON (JavaScript Object Notation) format.

The JSON response has key & value for "weather":"20" Which is of type text/string.

But in the python program, we need it to be number so that we can convert it from Celsius to Fahrenheit or vice-versa.
In such cases we have to go for casting the data type.

# Program to read file containing JSON object for weather

# In order to read and parse JSON, we need to use the json module from python
import json

weathers = []  # declaring empty list
weather_value = None # Will be using this variable to store the type casted value

print("Started Reading JSON file")
with open('weather.txt') as f:  # Reading file
    for jsonObj in f:   # reading lines from the file
        weather = json.loads(jsonObj)   # parsing and storing the line
        weathers.append(weather)    # adding the line to the list

print("Printing each JSON Decoded Object")
for weather in weathers:    # Traversing through the list
    print(weather)
    print(f"Type of weather is: {type(weather['weather'])}")
    weather_value = int(weather["weather"]) # Type casting from string to int
    # print(weather["id"], weather["city"], weather["weather"], weather["unit"])


print(f"{weather_value}° C")
print(type(weather_value))


fahrenheit = (weather_value * 9/5) + 32

print(f"Fahrenheit {fahrenheit}")


Python Operators

Following are the types of operators available in Python programming.

Arithmetic Operators

Arithmetic operators are used with numeric values to perform common mathematical operations.

"""
Python Arithmetic Operators
Arithmetic operators are used with numeric values
    to perform common mathematical operations:
--------------------------------------------------------------
|   Operator    |   Name             |       Example         |
|---------------|--------------------|-----------------------|
|       +       |   Addition         |       x + y           |
|       -       |   Subtraction      |       x - y           |
|       *       | Multiplication     |       x * y           |
|       /       |   Division         |       x / y           |
|       %       |   Modulus          |       x % y           |
|       **      |Exponential (power) |       x ** y          |
|       //      | Floor division     |       x // y          |
--------------------------------------------------------------
"""

Relational operators

Relational or Comparison operators, which compares the value on either side and decide the relation among them.

"""
--------------------------------------------------------------------------------------------
|    Operator    |    Description                                                       |
|       ==       | equals operator check if both sides are same.                        |
|       !=       | not equals operator check if both sides are not same.                |
|       <>       | not equals operator check if both sides are not same. same as !=     | Python3 Does not Support <>
|       >        | if left side value is greater than right.                            |
|       <        | if left side value is lesser than right.                             |
|       >=       | if left side value is greater and equal to the right.                |
|       <=       | if left side value is lesser and equal to the right.                 |
------------------------------------------------------------------------------------------
Lets see some examples below
Assume variable x holds 3 and variable y holds 6,
"""

Assignment Operators

Assignment operators are used to assign value to a variable.

"""
-----------------------------------------------------
|   Operator        |   Example     |   Similar to  |
|-------------------|---------------|---------------|
|       =           |   x = 5       |   x = 5       | Assign value from right to left side
|       +=          |   x += 5      |   x = x + 5   | It adds right & left operand and assign to left side
|       -=          |   x -= 5      |   x = x - 5   | It subtracts right & left operand and assign to left side
|       *=          |   x *= 5      |   x = x * 5   | It multiplies right & left operand and assign to left side
|       /=          |   x /= 5      |   x = x / 5   | It divides left with right operand and assign to left side
|       %=          |   x %= 5      |   x = x % 5   | It takes modulo using two operand and assign to left
|       //=         |   x //= 5     |   x = x // 5  | It performs floor division on operands and assign to left
|       **=         |   x **= 5     |   x = x ** 5  | It performs exponential (power) calc on operands & assign to left
|       &=          |   x &= 5      |   x = x & 5   | Bitwise AND
|       |=          |   x |= 5      |   x = x | 5   | Bitwise OR
|       ^=          |   x ^= 5      |   x = x ^ 5   | Bitwise XOR
|       >>=         |   x >>= 5     |   x = x >> 5  | Bitwise right shift
|       <<=         |   x <<= 5     |   x = x << 5  | Bitwise left shift
----------------------------------------------------------
"""

Logical Operators

Logical operators are used in combining conditional statements.

"""
------------------------------------------------------------------------------------------
|   Operator    |                    Description                    |   Example            |
|---------------|---------------------------------------------------|----------------------|
|     and       | Returns True if both statements are true          |  x < 5 and  x < 10   |
|     or        | Returns True if one statements is true            |  x < 5 or  x < 10    |
|     not       | Returns False if the result is true or vice-versa |not(x < 5 and x < 10) |
|------------------------------------------------------------------------------------------|
"""

Bitwise Operators

Bitwise operators are used for comparing Binary (i.e., 0’s and 1’s) numbers. See below table for the available bitwise operators.

"""
Bitwise Operators
-----------------------------------------------------------------
|   Operator        |   Example     |   Operator name           |
|-------------------|---------------|---------------------------|
|       &           |   x = x & y   |  Bitwise AND              |
|       |           |   x = x | y   |  Bitwise OR               |
|       ~           |   x = x ~ y   |  Binary Ones Complement   |
|       ^           |   x = x ^ y   |  Bitwise XOR              |
|       >>          |   x = x>>y    |  Bitwise right shift      |
|       <<          |   x = x<<y    |  Bitwise left shift       |
-----------------------------------------------------------------
"""
AND Truth Table
AND Truth Table

When x and y value is 1 or True then the result will be 1 or True.

OR Truth table
OR Truth Table

When any one (x or y) values are True the result will also be True.

Membership Operators

Membership operators, checks for membership in a sequence (strings, lists, or tuples).

There are two membership operators, See below.

Membership Operators (in and not in)
Membership Operators (in and not in)

Identity Operators

Identity operators compare the memory location of two objects.

There are two types of Identity Operators (is and not is), See below

Identity Operators (is and is not)
Identity Operators (is and is not)
Python type casting and Operators

https://youtu.be/cit6jKwKY1o 
Learn Python in Tamil www.aryanz.co.in
Python type casting and Operators – Learn Python in Tamil www.aryanz.co.in
Python type casting and operators

Python comments and variables

Python comments and variables

Let us see about Python comments and variables which covers the below topics.

  1. Python Comments
    • Single line comment
    • End of the line comments
    • Multi line comments using # (Pound or Sharp)
    • Multi line comments using """ (3 double quotes a.k.a Multi line string)
  2. Variables
    • Declaring variables
    • Assign variables
    • re-assign variables
    • Nullify variables using None Keyword

Code Repo : https://git.io/JtnlX

Slides: https://git.io/Jtckd

We have the below topics covered as part of Python learning course.

  1. Python introduction in Tamil Part 1
  2. Python introduction in Tamil Part 2
  3. Writing your first python program and how to execute it?
  4. Python syntax, indentation and data types

Watch on YouTube: https://youtu.be/aRWq1UMYgXU

Learn Python in Tamil | பைதான் மொழியைக் கற்றுக்கொள்ளுங்கள் – Python comments and variables.

Python Comments

Comments in Python

  1. Documentation using comments – It helps anyone reading the code along with the comments can easily understand the code easily and how it works. (Logical and Functional explanation).
  2. (mostly this will be used for debugging your code, if the code is not working as expected and to find the line which cause the bug).

How to comment and what are all the ways we can comment in Python?

Lets see what all ways we can comment in Python.

  • Single line comments
  • End of the line comments
  • Multi line comments using # (Pound or Sharp)
  • Multi line comments using """ (3 double quotes a.k.a Multi line string)
Single line comments

It is writing in one single line and These lines are prefixed using # (Pound or Sharp).

# This is Single line comment
# Sample program to print hello world.
print("Hello, World")
# End of my python program
End of the line comments

End of line comments, as name says it is written at end of the line along with the Python code.

Lets see an example below,

amt1 = 20
amt2 = 5
final_amt = amt1 + amt2  # Adding amt1 and amt2.
Multi line comments using #

Multi line comments using #, it is similar to Single line comment, but it is written on multiple lines prefixed with the # (Pound or Sharp) symbol.

Primarily used for documenting python code or explaining the block of code below,

Its written at the top of a class or function.

Lets see an example below

#  Author: aryanz.co.in
#  Class name: calculator
#  Description:  This class is used for performing add, sub, multiply and divide. each action requires two parameters.

#  Add operation
#  Two parameters x and y
#  prints the result on the screen
def add(x, y)
          print(x + y)
Multi line comments using “””

It is same as Multi line comment using # but it is prefixed with the """ (3 double quotes).

Similar to the Multi line using #, even here we can use this for documentation.

Lets see an example below

"""  
Author: aryanz.co.in
Class name: calculator
Description:  This class is used for performing add, sub, multiply and divide. each action requires two parameters.
"""

""" Add operation
Two parameters x and y
prints the result on the screen
"""
def add(x, y)
          print(x + y)
Python comments and its types


Single line comments
End of the line comments
Multi line comments using # (Pound or Sharp)
Multi line comments using """ (3 double quotes a.k.a Multi line string)

www.aryanz.co.in

Python Variables

What is a variable?

Variables, a placeholder or container or a memory location to store values of any type, such as string, int, float, list and etc.,

  • A variable is a container for storing data/values.
  • Values are assigned at the beginning of the program.
  • It does not need to be declared with any particular type.
  • Type can be changed at any time, after they have been initialized at the beginning. (x = 5, after few line of code assign x = “Hello”, it is possible in Python)
  • Before assigning values to variables, it can be typecast to a specific type. (x = str(4))
  • Most importantly variables are case sensitive. (Msg = “Hello” and msg = “Hello” both are different variables)

Variable declarations (see below).

Python variable declarations
Python Variables Declaration
https://youtu.be/aRWq1UMYgXU
Python comments and variables - Learn Python in Tamil www.aryanz.co.in
Subscribe to out channel for more videos – https://bit.ly/aryanz-youtube
Python Syntax and Data types

Python Syntax and Data types

Python Syntax and Data types

Today we are going to see about Python Syntax and Data types which consist of the following

  1. Python Syntax
  2. Indentation in Python
  3. Best practices while writing Python program
  4. Data types (In build data types in Python)

Code Repo : https://git.io/JtUqQ

Slides : https://git.io/JtUZM

In case if you have missed our previous topics

  1. Python introduction in Tamil Part 1
  2. Python introduction in Tamil Part 2
  3. Writing your first python program and how to execute it?

Watch in youtube: https://youtu.be/ftaMRl8gdZ0

Learn Python in Tamil | பைதான் மொழியைக் கற்றுக்கொள்ளுங்கள் – Writing first program in Python and executing them using Python Interpreter

Syntax, Indentation and Best practice

Indentation is it really needed for Python?

Well to answer for it, Yes Its is very important for us to know about the indentation. because Python does not uses the curley braces ‘{‘ or ‘}’ for enclosing the statements. where as it used the indentations for it.

Key points to remember about Indentation

  • Giving space or tab space at beginning of a line, is called indentation.
  • In Python Indentation plays important role.
  • It uses the space to determine the block of statements.
  • The first line of Python code should not have indentation.(it will throw IndentationError)

Python coding best practices

Lets us see some best practices to be followed while writing Python, these best practices are followed so that your code does not end up having errors, easy to read and understand the code or the logic.

Python Indentation Rules

  • We can’t split indentation into multiple lines using backslash.
  • The first line of Python code can’t have indentation, it will throw IndentationError.
  • You should avoid mixing tabs and white spaces to create indentation. It’s because text editors in Non-Unix systems behave differently and mixing them can cause wrong indentation.
  • It is preferred to use white-spaces for indentation than the tab character.
  • The best practice is to use 4 white-spaces for first indentation and then keep adding additional 4 white-spaces to increase the indentation.

We will have another exclusive video coming up on the topic “Python coding best practices”.

Save the above file in any folder with the name helloworld.py

.py is the file extension used to identify the file is Python script

Python Data types

In Python we have the following in-built data types.

CategoryData typesNotes/Description
Text typestrString type, which is enclosed with double quotes
Example "Hello", "Python", "Programming"
Numeric typeint, float, complexnumbers, decimal and real numbers
Sequence/Collection typelist, tuple, rangeCollections, group of items.
Mapping typedictdictionary type which has key and value pair combination.
Example: {"virus_id":20190101, "virus_name":"COVID19", "isSpreadable":True}
Set typeset, frozensetSimilar to the list, just that it excludes any duplicates and it sorts the items using natural sorting order i.e., ascending order.
Boolean typeboolTrue or False its that simple.
Binary typebytes, bytearray, memoryviewFile reading and writing we can use the bytes or bytearrays.
memory view is to view the byte location in the memory.
Python in-built data types

Watch youtube video for Python datatype and syntax in tamil https://youtu.be/ftaMRl8gdZ0

Topics discussed in the Video:
1. Python Syntax
2. Indentation in Python
3. Best practices while writing Python program
4. Data types (In build data types in Python)
------------------------------------------------------------------
Demo code : https://git.io/JtUqQ
Slides : https://git.io/JtUZM

-------------------------------------------------------
Syntax, Indentation and Best practice
------------------------------------------------------
1) Giving space or tab space at beginning of a line, is called indentation.
2) In Python Indentation plays important role.
3) It uses the space to determine the block
of statements.
4) The first line of Python code should not have indentation.(it will throw IndentationError)

Python Indentation Rules

1) We can’t split indentation into multiple lines using backslash.
2) The first line of Python code can’t have indentation, it will throw IndentationError.
3) You should avoid mixing tabs and white spaces to create indentation. It’s because text editors in Non-Unix systems behave differently and mixing them can cause wrong indentation.
4) It is preferred to use white-spaces for indentation than the tab character.
5) The best practice is to use 4 white-spaces for first indentation and then keep adding additional 4 white-spaces to increase the indentation.
-------------------------------------------------------------------------------
Python Data types:

In Python we have the following in-built data types
----------------------------------------------------------------------
Data types                                       Category
str                                                    # Text Type
int, float, complex                         # Numeric Types
list, tuple, range                            # Sequence Types / Collection
dict                                                 # Mapping Type (Key, Value Pair)
set, frozenset                               # Set Types
bool                                                # Boolean Type True | False
bytes, bytearray, memoryview   # Binary Types

#Python #Syntax #Indentation #BestPractice #PythonDataTypes
https://bit.ly/aryanz-youtube
Subscribe to out channel for more videos – https://bit.ly/aryanz-youtube
Writing your first code in Python

Writing your first code in Python

Writing your first code in Python

Today we are going to see about Writing your first code in Python

In case if you have missed our previous topics

  1. Python introduction in Tamil Part 1
  2. Python introduction in Tamil Part 2

Watch in youtube: https://youtu.be/Mj6HSMLvikc

Learn Python in Tamil | பைதான் மொழியைக் கற்றுக்கொள்ளுங்கள் – Writing first program in Python and executing them using Python Interpreter

Writing your first Python code

Where to write?

You can use any Notepad or Text editor for writing your Python program. But there are May IDEs available to help us with auto fill the code snippet or help us with formatting the code and check for any syntax errors.

But today we are going to write our first code, So lets use simple notepad or text editor.

Your first Python program

# This is my first Python code
# To print Hello world in the console
print("Hello World")

Save the above file in any folder with the name helloworld.py

.py is the file extension used to identify the file is Python script


Well you have now officially a Python developer, because you have written your first python code.

How to execute the Python program?

In order to execute the python program, we need Python Interpreter which will do the magic.

What is that magic?

Its the Interpretation of simple English into 0’s and 1’s, Yes the Python Interpreter is going to read your code and convert into 0’s and 1’s so that machine can understand the instructions.

To execute the Python code,
  1. You need to open Terminal or Command prompt in your Machine.
  2. Type “python3 filename.py” (In our case, “python3 helloworld.py”
  3. Hit Enter, you should see the output in the console.

Got into issue while running the program?

Goto this link https://youtu.be/Mj6HSMLvikc and comment the error message. We will have a loot at what went wrong and why the error appeared.
Writing your first code in Python, Print Hello world using python, Python interpreter how to run puthon script, how to run python file, how to save python script
Python intro in Tamil – Part 2 | பைதான் கற்றுக்கொள்ளுங்கள்

Python intro in Tamil – Part 2 | பைதான் கற்றுக்கொள்ளுங்கள்

Python intro in Tamil – Part 2

In today’s topic we will be seeing the Python intro in Tamil – Part 2 | பைதான் கற்றுக்கொள்ளுங்கள், before proceeding if you have missed watching our previous topic “Python intro in Tamil – part 1” see below link.

Watch Python introduction in Tamil Part 1

What we are going to see?

In Python intro in Tamil – Part 2, We are going to see how to Download and install Python. along with that we will see the operating system supported and system minimum requirements.

Learn Python in Tamil | பைதான் மொழியைக் கற்றுக்கொள்ளுங்கள் – Python programming language introduction | பைத்தான் அறிமுகம்

Youtube:https://youtu.be/GJ_4VVX21QA

What is needed to setup and run python?

Supported OS

  • Microsoft Windows
  • Linux / Unix
  • Mac OS

Minimum system requirements

  • x86 – 64 bit Intel or AMD Processor
  • Min. 4 GB RAM or greater
  • Min. 5 GB Hard disk space or more

How and where to download and install Python?

To Download & Install

In Windows
  1. Visit https://www.python.org/download/ and download the setup file.
  2. Run the exe (Winodws) and ensure you set the Python Home path.
In Linux

Open Terminal and run the below command, (Ubuntu, Pop OS)

Note: Ensure you have root access, else below command will throw error.

$>sudo apt-get install python3

After executed with root privilege, it will display list of modules or library its going add to your system.

And will display the disk space its going to occupy after installing.

Press “Y” to proceed and installation will finish in some time.

(Note: You need to be connected to internet for downloading python from Linux terminal)

How to check Python installation is completed and what is the python version?

Once installation is completed, Run the following commands to verify the installation is success and the Python is installed correctly.

$>python3 --version

will display the version installed, this command can be run in Windows, Linux & Max OS.

or

$> whereis python3

will show the python3 system paths

or

$>which python3

will show the home path of the python3.

Learn Python programming | Beginner to Expert  | Python introduction, System requirements,  Python  Download and Installing Python.
Python intro in Tamil – Part 2 | பைதான் கற்றுக்கொள்ளுங்கள்

Please disable your adblocker or whitelist this site! We Provide Free content and in return, all we ask is to allow serving Ads.

Pin It on Pinterest