ºÝºÝߣ

ºÝºÝߣShare 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
¨CMartijn 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

Similar to Introduction to Python-2 (20)

Python ppt
Python pptPython ppt
Python ppt
Mohita Pandey
?
Python3
Python3Python3
Python3
Jiayun Zhou
?
4. python functions
4. python   functions4. python   functions
4. python functions
in4400
?
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..pptuso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
angelca13
?
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..pptuso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
angelca13
?
python_presentation_for students_high_school
python_presentation_for students_high_schoolpython_presentation_for students_high_school
python_presentation_for students_high_school
RakeshKumar483087
?
python programing 101 presentation ... Let's start
python programing 101 presentation ... Let's startpython programing 101 presentation ... Let's start
python programing 101 presentation ... Let's start
Mohsen Hefni
?
pythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.ppt
pythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.pptpythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.ppt
pythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.ppt
HamidKhemili
?
into python.pptinto python.pptinto python.ppt
into python.pptinto python.pptinto python.pptinto python.pptinto python.pptinto python.ppt
into python.pptinto python.pptinto python.ppt
yatakonakiran2
?
Learn Python in three hours - Python is an experiment
Learn Python in three hours - Python is an experimentLearn Python in three hours - Python is an experiment
Learn Python in three hours - Python is an experiment
Anil Yadav
?
python1.pptpppppppppppppppppppppppppppppppp
python1.pptpppppppppppppppppppppppppppppppppython1.pptpppppppppppppppppppppppppppppppp
python1.pptpppppppppppppppppppppppppppppppp
divijareddy0502
?
Python doc and Learn Python in three hours
Python doc and Learn Python in three hoursPython doc and Learn Python in three hours
Python doc and Learn Python in three hours
Anil Yadav
?
Python_Training_Presentation---------&--
Python_Training_Presentation---------&--Python_Training_Presentation---------&--
Python_Training_Presentation---------&--
singh08ravinder
?
Fabric
FabricFabric
Fabric
JS Lee
?
Python½Ì³Ì / Python tutorial
Python½Ì³Ì / Python tutorialPython½Ì³Ì / Python tutorial
Python½Ì³Ì / Python tutorial
ee0703
?
Python programming
Python programmingPython programming
Python programming
Ganesh Bhosale
?
Day_2_Advanced_Python_Concepts_Detailed.pptx
Day_2_Advanced_Python_Concepts_Detailed.pptxDay_2_Advanced_Python_Concepts_Detailed.pptx
Day_2_Advanced_Python_Concepts_Detailed.pptx
thumsup9515
?
Programming in Python
Programming in Python Programming in Python
Programming in Python
Tiji Thomas
?
File and directories in python
File and directories in pythonFile and directories in python
File and directories in python
Lifna C.S
?
All_About_Python_and_more+Cambridge.pptx
All_About_Python_and_more+Cambridge.pptxAll_About_Python_and_more+Cambridge.pptx
All_About_Python_and_more+Cambridge.pptx
nadaragnesrani
?
4. python functions
4. python   functions4. python   functions
4. python functions
in4400
?
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..pptuso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
angelca13
?
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..pptuso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
uso del lenguaje de programaci¨®n python en m¨¦todos num¨¦ricos..ppt
angelca13
?
python_presentation_for students_high_school
python_presentation_for students_high_schoolpython_presentation_for students_high_school
python_presentation_for students_high_school
RakeshKumar483087
?
python programing 101 presentation ... Let's start
python programing 101 presentation ... Let's startpython programing 101 presentation ... Let's start
python programing 101 presentation ... Let's start
Mohsen Hefni
?
pythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.ppt
pythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.pptpythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.ppt
pythegggggeeeeeeeeeeeeeeeeeeeeeeeon1.ppt
HamidKhemili
?
into python.pptinto python.pptinto python.ppt
into python.pptinto python.pptinto python.pptinto python.pptinto python.pptinto python.ppt
into python.pptinto python.pptinto python.ppt
yatakonakiran2
?
Learn Python in three hours - Python is an experiment
Learn Python in three hours - Python is an experimentLearn Python in three hours - Python is an experiment
Learn Python in three hours - Python is an experiment
Anil Yadav
?
python1.pptpppppppppppppppppppppppppppppppp
python1.pptpppppppppppppppppppppppppppppppppython1.pptpppppppppppppppppppppppppppppppp
python1.pptpppppppppppppppppppppppppppppppp
divijareddy0502
?
Python doc and Learn Python in three hours
Python doc and Learn Python in three hoursPython doc and Learn Python in three hours
Python doc and Learn Python in three hours
Anil Yadav
?
Python_Training_Presentation---------&--
Python_Training_Presentation---------&--Python_Training_Presentation---------&--
Python_Training_Presentation---------&--
singh08ravinder
?
Python½Ì³Ì / Python tutorial
Python½Ì³Ì / Python tutorialPython½Ì³Ì / Python tutorial
Python½Ì³Ì / Python tutorial
ee0703
?
Day_2_Advanced_Python_Concepts_Detailed.pptx
Day_2_Advanced_Python_Concepts_Detailed.pptxDay_2_Advanced_Python_Concepts_Detailed.pptx
Day_2_Advanced_Python_Concepts_Detailed.pptx
thumsup9515
?
Programming in Python
Programming in Python Programming in Python
Programming in Python
Tiji Thomas
?
File and directories in python
File and directories in pythonFile and directories in python
File and directories in python
Lifna C.S
?
All_About_Python_and_more+Cambridge.pptx
All_About_Python_and_more+Cambridge.pptxAll_About_Python_and_more+Cambridge.pptx
All_About_Python_and_more+Cambridge.pptx
nadaragnesrani
?

Recently uploaded (20)

Carousel - Five Key FinTech Trends for 2025
Carousel - Five Key FinTech Trends for 2025Carousel - Five Key FinTech Trends for 2025
Carousel - Five Key FinTech Trends for 2025
Anadea
?
A Brief Introduction About Raman Bhaumik
A Brief Introduction About Raman BhaumikA Brief Introduction About Raman Bhaumik
A Brief Introduction About Raman Bhaumik
Raman Bhaumik
?
Enscape Latest 2025 Crack Free Download
Enscape Latest 2025  Crack Free DownloadEnscape Latest 2025  Crack Free Download
Enscape Latest 2025 Crack Free Download
rnzu5cxw0y
?
EASEUS Partition Master Crack with License Code [Latest]
EASEUS Partition Master Crack with License Code [Latest]EASEUS Partition Master Crack with License Code [Latest]
EASEUS Partition Master Crack with License Code [Latest]
bhagasufyan
?
Minitool Partition Wizard Crack Free Download
Minitool Partition Wizard Crack Free DownloadMinitool Partition Wizard Crack Free Download
Minitool Partition Wizard Crack Free Download
v3r2eptd2q
?
LLM Security - Smart to protect, but too smart to be protected
LLM Security - Smart to protect, but too smart to be protectedLLM Security - Smart to protect, but too smart to be protected
LLM Security - Smart to protect, but too smart to be protected
Ivo Andreev
?
DevOpsDays LA - Platform Engineers are Product Managers.pdf
DevOpsDays LA - Platform Engineers are Product Managers.pdfDevOpsDays LA - Platform Engineers are Product Managers.pdf
DevOpsDays LA - Platform Engineers are Product Managers.pdf
Justin Reock
?
SketchUp Pro Crack [2025]-Free Download?
SketchUp Pro Crack [2025]-Free Download?SketchUp Pro Crack [2025]-Free Download?
SketchUp Pro Crack [2025]-Free Download?
kiran10101khan
?
AVG Antivirus Crack With Free version Download 2025 [Latest]
AVG Antivirus Crack With Free version Download 2025 [Latest]AVG Antivirus Crack With Free version Download 2025 [Latest]
AVG Antivirus Crack With Free version Download 2025 [Latest]
haroonsaeed605
?
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
haroonsaeed605
?
Adobe InDesign Crack ¨C Full Version Free Download 2025
Adobe InDesign Crack ¨C Full Version Free Download 2025Adobe InDesign Crack ¨C Full Version Free Download 2025
Adobe InDesign Crack ¨C Full Version Free Download 2025
sannnasaba545
?
Rise of the Phoenix: Lesson Learned Build an AI-powered Test Gen Engine
Rise of the Phoenix: Lesson Learned Build an AI-powered Test Gen EngineRise of the Phoenix: Lesson Learned Build an AI-powered Test Gen Engine
Rise of the Phoenix: Lesson Learned Build an AI-powered Test Gen Engine
stevebrudz1
?
Why Hire Python Developers? Key Benefits for Your Business
Why Hire Python Developers? Key Benefits for Your BusinessWhy Hire Python Developers? Key Benefits for Your Business
Why Hire Python Developers? Key Benefits for Your Business
Mypcot Infotech
?
Douwan Preactivated Plus Crack 2025-Latest
Douwan Preactivated Plus Crack 2025-LatestDouwan Preactivated Plus Crack 2025-Latest
Douwan Preactivated Plus Crack 2025-Latest
mubeen010khan
?
LDPlayer 9.1.20 Latest Crack Free Download
LDPlayer 9.1.20 Latest Crack Free DownloadLDPlayer 9.1.20 Latest Crack Free Download
LDPlayer 9.1.20 Latest Crack Free Download
5ls1bnl9iv
?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
Ava Isley
?
Metaverse Meetup: Explore Mulesoft MAC Project
Metaverse Meetup: Explore  Mulesoft MAC ProjectMetaverse Meetup: Explore  Mulesoft MAC Project
Metaverse Meetup: Explore Mulesoft MAC Project
GiulioPicchi
?
AI-Powered Chatbots for Employee Support
AI-Powered Chatbots for Employee SupportAI-Powered Chatbots for Employee Support
AI-Powered Chatbots for Employee Support
AutomationEdge Technologies
?
How John started to like TDD (instead of hating it) - TED talk
How John started to like TDD (instead of hating it) - TED talkHow John started to like TDD (instead of hating it) - TED talk
How John started to like TDD (instead of hating it) - TED talk
Nacho Cougil
?
Why Every Cables and Wires Manufacturer Needs a Cloud-Based ERP Solutions
Why Every Cables and Wires Manufacturer Needs a Cloud-Based ERP SolutionsWhy Every Cables and Wires Manufacturer Needs a Cloud-Based ERP Solutions
Why Every Cables and Wires Manufacturer Needs a Cloud-Based ERP Solutions
Absolute ERP
?
Carousel - Five Key FinTech Trends for 2025
Carousel - Five Key FinTech Trends for 2025Carousel - Five Key FinTech Trends for 2025
Carousel - Five Key FinTech Trends for 2025
Anadea
?
A Brief Introduction About Raman Bhaumik
A Brief Introduction About Raman BhaumikA Brief Introduction About Raman Bhaumik
A Brief Introduction About Raman Bhaumik
Raman Bhaumik
?
Enscape Latest 2025 Crack Free Download
Enscape Latest 2025  Crack Free DownloadEnscape Latest 2025  Crack Free Download
Enscape Latest 2025 Crack Free Download
rnzu5cxw0y
?
EASEUS Partition Master Crack with License Code [Latest]
EASEUS Partition Master Crack with License Code [Latest]EASEUS Partition Master Crack with License Code [Latest]
EASEUS Partition Master Crack with License Code [Latest]
bhagasufyan
?
Minitool Partition Wizard Crack Free Download
Minitool Partition Wizard Crack Free DownloadMinitool Partition Wizard Crack Free Download
Minitool Partition Wizard Crack Free Download
v3r2eptd2q
?
LLM Security - Smart to protect, but too smart to be protected
LLM Security - Smart to protect, but too smart to be protectedLLM Security - Smart to protect, but too smart to be protected
LLM Security - Smart to protect, but too smart to be protected
Ivo Andreev
?
DevOpsDays LA - Platform Engineers are Product Managers.pdf
DevOpsDays LA - Platform Engineers are Product Managers.pdfDevOpsDays LA - Platform Engineers are Product Managers.pdf
DevOpsDays LA - Platform Engineers are Product Managers.pdf
Justin Reock
?
SketchUp Pro Crack [2025]-Free Download?
SketchUp Pro Crack [2025]-Free Download?SketchUp Pro Crack [2025]-Free Download?
SketchUp Pro Crack [2025]-Free Download?
kiran10101khan
?
AVG Antivirus Crack With Free version Download 2025 [Latest]
AVG Antivirus Crack With Free version Download 2025 [Latest]AVG Antivirus Crack With Free version Download 2025 [Latest]
AVG Antivirus Crack With Free version Download 2025 [Latest]
haroonsaeed605
?
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
AnyDesk Pro 3.7.0 Crack License Key Free Download 2025 [Latest]
haroonsaeed605
?
Adobe InDesign Crack ¨C Full Version Free Download 2025
Adobe InDesign Crack ¨C Full Version Free Download 2025Adobe InDesign Crack ¨C Full Version Free Download 2025
Adobe InDesign Crack ¨C Full Version Free Download 2025
sannnasaba545
?
Rise of the Phoenix: Lesson Learned Build an AI-powered Test Gen Engine
Rise of the Phoenix: Lesson Learned Build an AI-powered Test Gen EngineRise of the Phoenix: Lesson Learned Build an AI-powered Test Gen Engine
Rise of the Phoenix: Lesson Learned Build an AI-powered Test Gen Engine
stevebrudz1
?
Why Hire Python Developers? Key Benefits for Your Business
Why Hire Python Developers? Key Benefits for Your BusinessWhy Hire Python Developers? Key Benefits for Your Business
Why Hire Python Developers? Key Benefits for Your Business
Mypcot Infotech
?
Douwan Preactivated Plus Crack 2025-Latest
Douwan Preactivated Plus Crack 2025-LatestDouwan Preactivated Plus Crack 2025-Latest
Douwan Preactivated Plus Crack 2025-Latest
mubeen010khan
?
LDPlayer 9.1.20 Latest Crack Free Download
LDPlayer 9.1.20 Latest Crack Free DownloadLDPlayer 9.1.20 Latest Crack Free Download
LDPlayer 9.1.20 Latest Crack Free Download
5ls1bnl9iv
?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
ChatGPT and DeepSeek: Which AI Tool Delivers Better User Experience?
Ava Isley
?
Metaverse Meetup: Explore Mulesoft MAC Project
Metaverse Meetup: Explore  Mulesoft MAC ProjectMetaverse Meetup: Explore  Mulesoft MAC Project
Metaverse Meetup: Explore Mulesoft MAC Project
GiulioPicchi
?
How John started to like TDD (instead of hating it) - TED talk
How John started to like TDD (instead of hating it) - TED talkHow John started to like TDD (instead of hating it) - TED talk
How John started to like TDD (instead of hating it) - TED talk
Nacho Cougil
?
Why Every Cables and Wires Manufacturer Needs a Cloud-Based ERP Solutions
Why Every Cables and Wires Manufacturer Needs a Cloud-Based ERP SolutionsWhy Every Cables and Wires Manufacturer Needs a Cloud-Based ERP Solutions
Why Every Cables and Wires Manufacturer Needs a Cloud-Based ERP Solutions
Absolute ERP
?

Introduction to Python-2