SlideShare a Scribd company logo
Intro to Python
by Shuai Liu
agenda
• History & Basics
• Advanced & Be Pythonic
• Awesome Python Frameworks
Advanced & Be Pythonic
Review
• int & float & bool
• string & list & tuple
• dict
• loop & branch
• def methods
Something interesting…
def foo(a, b):
"""My niubility methods."""
return a + b
"""My niubility methods."""
>>> print foo.__doc__
>>> My niubility methods.
class Person(object):
"""My first class"""
version = 1.0
def __init__(self, name):
self.name = name
print "__init__ called"
def get_name(self):
"""Return the name"""
return self.name
Pythonic
–Martijn Faassen, founder of the lxml (XML library for Python)
“Pythonic is to use the Python constructs and
datastructures with clean,
readable idioms.”
enumerate
l = [0, 1, 2, 3, 4]
for i in range(len(l)):
print i, l[i]
for i, element in enumerate(l):
print i, element
value exchange
temp = foo
foo = bar
bar = temp
foo, bar = bar, foo
string concatenating
s = “hello” + “world”
s = “”.join([“hello”, “world”])
λ
lambda
def foo(x):
return x ** 2
lambda x : x ** 2
>>> a = lambda x : x ** 2
>>> a(5)
>>> 25
filter & map & reduce
>>> filter(function, iterable)
>>> map(function, iterable)
>>> reduce(function, iterable)
filter
map
reduce
Introduction to Python-2
List comprehensions
>>> a = map(lambda x : x ** 2, range(10))
>>> a = [ x ** 2 for x in range(10)]
>>> a = filter(lambda x : x % 2, range(10))
>>> a = [x for x in range(10) if x % 2]
Introduction to Python-2
two more things…
PEP
Python Enhancement
Proposals
num title owner
1
PEP Purpose and
Guidelines
Warsaw, Hylton, Goodger,
Coghlan
4
Deprecation of Standard
Modules
von Löwis
5
Guidelines for Language
Evolution
Prescod
8
Style Guide for Python
Code
GvR, Warsaw, Coghlan
pip
pip
• A tool for installing and managing Python packages.
• $ sudo pip install Requests
Resources
Introduction to Python-2
IDE
‘+’.join([ , ])
IDE
Summary
• OO
• lambda & three functions
• list comprehensions
• resources
Thanks

More Related Content

PPT
Python Kick Start
PDF
Koreference
PPTX
Python Metaclasses
PDF
Python's magic methods
KEY
Week3
PDF
Introduction to Python-1
PDF
NoSQL & MongoDB
PPTX
Python introduction
Python Kick Start
Koreference
Python Metaclasses
Python's magic methods
Week3
Introduction to Python-1
NoSQL & MongoDB
Python introduction

Similar to Introduction to Python-2 (20)

PPT
Python ppt
PDF
Python3
PDF
4. python functions
PPT
python Basics of Python And Its features
PPT
This presentation about python programming language.
PPT
Introduction to Python deep knowledge in it
PPT
Brief History of Python by Learning Python in three hours
PPT
python introduction to user friendly.ppt
PPT
pythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.ppt
PPT
uso del lenguaje de programación python en métodos numéricos..ppt
PPT
Learn Python in three hours - Python is an experiment
PPT
python1.pptpppppppppppppppppppppppppppppppp
PPT
python_presentation_for students_high_school
PPT
python programing 101 presentation ... Let's start
PPT
uso del lenguaje de programación python en métodos numéricos..ppt
PPT
into python.pptinto python.pptinto python.ppt
PPT
Python doc and Learn Python in three hours
PPTX
Python_Training_Presentation---------&--
PPT
Fabric
PDF
Python教程 / Python tutorial
Python ppt
Python3
4. python functions
python Basics of Python And Its features
This presentation about python programming language.
Introduction to Python deep knowledge in it
Brief History of Python by Learning Python in three hours
python introduction to user friendly.ppt
pythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.ppt
uso del lenguaje de programación python en métodos numéricos..ppt
Learn Python in three hours - Python is an experiment
python1.pptpppppppppppppppppppppppppppppppp
python_presentation_for students_high_school
python programing 101 presentation ... Let's start
uso del lenguaje de programación python en métodos numéricos..ppt
into python.pptinto python.pptinto python.ppt
Python doc and Learn Python in three hours
Python_Training_Presentation---------&--
Fabric
Python教程 / Python tutorial
Ad

Recently uploaded (20)

PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
L1 - Introduction to python Backend.pptx
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
System and Network Administraation Chapter 3
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PPTX
Essential Infomation Tech presentation.pptx
PDF
medical staffing services at VALiNTRY
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
How to Migrate SBCGlobal Email to Yahoo Easily
L1 - Introduction to python Backend.pptx
How Creative Agencies Leverage Project Management Software.pdf
System and Network Administraation Chapter 3
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Essential Infomation Tech presentation.pptx
medical staffing services at VALiNTRY
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Odoo POS Development Services by CandidRoot Solutions
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
VVF-Customer-Presentation2025-Ver1.9.pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Which alternative to Crystal Reports is best for small or large businesses.pdf
Odoo Companies in India – Driving Business Transformation.pdf
Wondershare Filmora 15 Crack With Activation Key [2025
PTS Company Brochure 2025 (1).pdf.......
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Upgrade and Innovation Strategies for SAP ERP Customers
Ad

Introduction to Python-2