INTERNSHIP
PROJECT REPORT
PRESENTEDBY :
LAKSHMI KANTH.P
REGD NO : 20781A04C8
DEPT : ECE-C
CONTENT
❖ INTRODUCTION
❖ FEATURES OF PYTHON
❖ BASIC DATA TYPES
INTRODUCTION TO PYTHON
Python is an interpreted,
object-oriented, high-
level programming
language with dynamic
semantics. Its high-level
built in data structures.
Web Development.
Machine Learning. Game Development.
FEATURES OF PYTHON
 Free and Open Source. ...
 Easy to code. ...
 Object-Oriented Language. ...
 High-Level Language. ...
 Extensible feature. …
 It Is Simple
BASIC DATA
TYPE
 Basic definition of
data type is a data
storage format that
can contain a specific
type or range values.
 When computer data
store in
variables,each
variables assigned
specific data type
VARIABLE DATA
TYPES
➢ INT (INTEGER DATA
TYPE).
➢ FLOAT DATA TYPE.
➢ BOOL(BOOLEAN
VALUES).
➢ STR(STRING VALUES).
➢ COMPLEX DATA TYPES.
• int Data Type:
 The int data type is used to store
positive or negative whole
numbers in Python.
 Example:-
 a=2
 print(a, "is of type", type(a))
 Output:-
 2 is of type int
• float datatype:
 The float data type is used
to store real number values
in Python.
 Example:-
 b = 1.5
 print(b, "is of type", type(b))
 Output:-
 1.5 is of type float
bool datatype
 bool datatype: The bool data type is declared with
the bool keyword and can only store the values True
or False.
 Example:-
 x = True
 print(x)
 print(type(x))
 Output:-
 True
 bool
string datatype
 string datatype: The string is a collection of one or more
characters put in a quotation mark, double-quotes, or
triple quotes. It is represented using an str class.
 Example:-
 string1= "Welcome To SVCET."
 print(string1)
 Output:-
 Welcome To SVCET.
complex datatype:
 complex datatype: The complex data type is used to
represent the complex numbers. It is specified as (real
part)+(imaginary part) j. Example:-
 x=4+5j
 print(x)
 print(type(x))
 Output:-
 4+5j
 Complex
PROJECT
 .
.
.
.
.
.
.
CONCIUSION
Python supports both function oriented and structure oriented programing.
Dinamic management which is used for computational resources
efficiently.
It is also compatible with all popular operating systems and plotforms.
Langunge can be univarsaly accepted by all the programers.
.
THANK YOU
This Photo by Unknow n author is licensed under CC BY.

Presentation 1 (1).pdf

  • 1.
    INTERNSHIP PROJECT REPORT PRESENTEDBY : LAKSHMIKANTH.P REGD NO : 20781A04C8 DEPT : ECE-C
  • 2.
    CONTENT ❖ INTRODUCTION ❖ FEATURESOF PYTHON ❖ BASIC DATA TYPES
  • 3.
    INTRODUCTION TO PYTHON Pythonis an interpreted, object-oriented, high- level programming language with dynamic semantics. Its high-level built in data structures. Web Development. Machine Learning. Game Development.
  • 4.
    FEATURES OF PYTHON Free and Open Source. ...  Easy to code. ...  Object-Oriented Language. ...  High-Level Language. ...  Extensible feature. …  It Is Simple
  • 5.
    BASIC DATA TYPE  Basicdefinition of data type is a data storage format that can contain a specific type or range values.  When computer data store in variables,each variables assigned specific data type
  • 6.
    VARIABLE DATA TYPES ➢ INT(INTEGER DATA TYPE). ➢ FLOAT DATA TYPE. ➢ BOOL(BOOLEAN VALUES). ➢ STR(STRING VALUES). ➢ COMPLEX DATA TYPES.
  • 7.
    • int DataType:  The int data type is used to store positive or negative whole numbers in Python.  Example:-  a=2  print(a, "is of type", type(a))  Output:-  2 is of type int
  • 8.
    • float datatype: The float data type is used to store real number values in Python.  Example:-  b = 1.5  print(b, "is of type", type(b))  Output:-  1.5 is of type float
  • 9.
    bool datatype  booldatatype: The bool data type is declared with the bool keyword and can only store the values True or False.  Example:-  x = True  print(x)  print(type(x))  Output:-  True  bool
  • 10.
    string datatype  stringdatatype: The string is a collection of one or more characters put in a quotation mark, double-quotes, or triple quotes. It is represented using an str class.  Example:-  string1= "Welcome To SVCET."  print(string1)  Output:-  Welcome To SVCET.
  • 11.
    complex datatype:  complexdatatype: The complex data type is used to represent the complex numbers. It is specified as (real part)+(imaginary part) j. Example:-  x=4+5j  print(x)  print(type(x))  Output:-  4+5j  Complex
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
    CONCIUSION Python supports bothfunction oriented and structure oriented programing. Dinamic management which is used for computational resources efficiently. It is also compatible with all popular operating systems and plotforms. Langunge can be univarsaly accepted by all the programers.
  • 20.
    . THANK YOU This Photoby Unknow n author is licensed under CC BY.