Introduction to python for dummies

lalitforeverr 185 views 8 slides Feb 24, 2019
Slide 1
Slide 1 of 8
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8

About This Presentation

Python was developed by Guido van Rossum in the late eighties and early nineties at the National Research Institute for Mathematics and Computer Science in the Netherlands.

Python is derived from many other languages, including ABC, Modula-3, C, C++, Algol-68, SmallTalk, and Unix shell and other sc...


Slide Content

Introduction to Python By Lalit Jain www.itedge.in

Agenda What is Python ? Where it is generally used? What can Python do ? Why Python? Python and its Versions Python Features Setting up the development Environment First Python Program www.itedge.in

What is Python? Python is a general purpose, dynamic, high level and interpreted programming language . It supports Object Oriented programming approach to develop applications . Python is developed by  Guido van Rossum and started implementing Python in 1989 .. Python's syntax and  dynamic typing  with its interpreted nature, makes it an ideal language for scripting and rapid application development . Python is not intended to work on special area such as web programming. That is why it is known as  multipurpose  because it can be used with web, enterprise, 3D CAD etc. www.itedge.in

Where it is generally used? Web development (server-side), Software development, Mathematical and scientific analysis of data , Desktop graphical application development, including games. www.itedge.in

What can Python do? Python can be used on a server to create web applications. Python can be used alongside software to create workflows. Python can connect to database systems. It can also read and modify files. Python can be used to handle big data and perform complex mathematics. Python can be used for rapid prototyping, or for production-ready software development. www.itedge.in

Why Python? Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.). Python has a simple syntax similar to the English language. Python has syntax that allows developers to write programs with fewer lines than some other programming languages. Python runs on an interpreter system, meaning that code can be executed as soon as it is written. This means that prototyping can be very quick. Python can be treated in a procedural way, an object-orientated way or a functional way. www.itedge.in

Python and its Versions 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 . In 1994, Python 1.0 was released with new features like: lambda, map, filter, and reduce. Python 2.0 added new features like: list comprehensions, garbage collection system. On December 3, 2008, Python 3.0 (also called "Py3K") was released. It was designed to rectify fundamental flaw of the language. www.itedge.in

Python Features Easy to Learn and Use. Expressive Language Interpreted Language Cross-platform Language Free and Open Source Object-Oriented Language Extensible Large Standard Library GUI Programming Support Integrated www.itedge.in