Learn Python

 


Hello Digital lovers …!!! ☺

List of the below topics you should learn

Before starting , Couple of things you have to learn

Identifiers : Name which is given to any object for identifying. Identifiers are case sensitive.

Eg : a= 50, _A= 15

Keywords : word which has own functionality.key words are can’t used as identifiers. Run below command in python shell you will get list of keywords

> help(“keywords”)

Eg: False, def, if …etc..

Comments : Comments used to know the intentetion of the program and ignore statements

Eg: #a

Quotations : Represent strings (Character values)

Eg: 'Python' “ Oracle”

Indentation :

Python indentation is a way of telling the Python interpreter that a series of statements belong to a particular block of code.

Eg : if a>b :

Variables :

Reserved memory locations. Which is used to store values

Eg : a=10

a→ variable

Python Data Types :

Python supports below data types

1.int()
2. float()
3.str()
4.bool()
5.complex()

Python Data Structures:

  1. String
  2. List
  3. Tuple
  4. Set
  5. Dict ( dictionary)


Popular posts from this blog

How to Install Oracle SQL Developer on Windows

How to Install pyspark on Windows

Database Constraints