78% found this document useful (9 votes)
8K views11 pages

Internship Presentation

The document outlines a 6-week internship on Python that covers key Python concepts including keywords and identifiers, data types, flow control, functions, file handling, and object-oriented programming. Each week focuses on a different topic - for example, week 1 covers variables and data types, week 2 looks at flow control with if/else statements and loops, and week 6 is dedicated to classes and object-oriented concepts in Python. The internship is guided by Tejas Sir and completed by Neha Salunkhe.

Uploaded by

tew
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
78% found this document useful (9 votes)
8K views11 pages

Internship Presentation

The document outlines a 6-week internship on Python that covers key Python concepts including keywords and identifiers, data types, flow control, functions, file handling, and object-oriented programming. Each week focuses on a different topic - for example, week 1 covers variables and data types, week 2 looks at flow control with if/else statements and loops, and week 6 is dedicated to classes and object-oriented concepts in Python. The internship is guided by Tejas Sir and completed by Neha Salunkhe.

Uploaded by

tew
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 11

SIX week Internship on PYTHON

Guided by Tejas Sir

1
Done by Neha Salunkhe
2

History
 Python laid its foundation in the late 1980s.
 The implementation of Python was started in the December 1989
by Guido Van Rossum at CWI in Netherland.
 In February 1991, van Rossum published the code (labeled version
0.9.0) to alt.sources.
 Initially, it was designed as a response to the ABC programming
language that was also foregrounded in the Netherlands.
3

Introduction of python
 Python is a widely used general-purpose, high level programming
language.
 Python is a dynamic, interpreted (bytecode-compiled) language.
 There are no type declarations of variables, parameters, functions, or
methods in source code.
 An excellent way to see how Python code works is to run the Python
interpreter and type code right into it.
4

Installing Python
 Python can be obtained from the Python Software
Foundation website at python.org.
Typically, that involves downloading the appropriate installer for your
operating system and running it on your machine.
 Some operating systems, notably Linux, provide a package
manager that can be run to install Python.
5
Week 1st

 Keywords & Identifier


 Comments
 Python Variables
 Datatypes
 Type Conversion
 Input & Output
 Operators
 Namespace
6

Week 2nd
FLOW CONTROL

 Python if…else
 Python for loop
 While Loop
 Break & Continue
 Pass Statement
7
Week 3rd

Functions

 Python Function
 Function Argument
 Python Recursion
 Python Global Keyword
 Python Modules
 Python Package
Week 4th 8

DATATYPES

 Python Numbers
 Python List
 Python Tuple
 Python String
 Python Set
 Python Dictionary
9
Week 5th
FILE HANDLING

 File Operation

 Python Directory

 Python Exception

 Exception Handling

 User-defined Exception
Week 6th 10

OBJECT & CLASS

 Python Class

 Python Inheritance

 Multiple Inheritance

 Operator Overloading
11

You might also like