SlideShare a Scribd company logo
Python meetup -2
Vic Yang
How to run a
program?
Python Virtual Machine
Program Execution
In interactive shell:	
	 print ‘hello world’ # hello world	
	 print 2 ** 100	# 1267650600228229491496703205376	
In command line:	
	 python hello.py
Python Virtual Machine
.py VS. .pyc
1. .py is the source code of Python
2. .pyc is the byte-compiled code of .py
3. .pyc can be executed in PVM
Python Virtual Machine
.py .pyc PVM
source byte code execution
PVM is a huge loop that executes our code one by one.
.pyc
A file contains byte-code interpreted from .py
Boost the execution time.
Rebuild automatically if .py changed.
The text in .pyc file is not binary code.
Python Implementation
CPython - ported from ANSI C, standard
implementation.
Jython - compiled Python code to Java byte-
code and executed on JVM
IronPython - similar as Jython implemented
Input
commands
Input
standard input	
	 a = “hello world”	
	 print a	
	 a = raw_input()	
	 print a	
sys.argv[1]	
	 import sys	
	 print sys.argv[1]	
	 > python script1.py
script1.py
Module import and reload
script4.py	
print ‘hello world’	
print 2 ** 100	
title = ‘The Meaning
of life’
IDLE	
>>>import script4	
>>>reload(script4)	
>>>print script4.title
Module import and reload
threenames.py	
a = ‘dead’	
b = ‘parrot’	
c = ‘sketch’	
print a, b ,c
IDLE	
>>>import three names	
>>>threenames.b, 	
threenames.c	
>>>from threenames
import a, b, c
Practice
Practice
Fibonacci sequence
CheckIO
Fibonacci sequence
def fib():	
	 	 x = 0	
	 	 y = 1	
	 	 while 1:	
	 	 	 	 yield x	
	 	 	 	 x, y = y, x + y	
!
g = fib()	
for i in range(9):	
	 print g.next()

More Related Content

PDF
IL2CPP: Debugging and Profiling
PDF
Python performance engineering in 2017
PDF
Python code for servo control using Raspberry Pi
PDF
Linux kernel bug hunting
PDF
Need to make a horizontal change across 100+ microservices? No worries, Sheph...
PDF
Effortless network response logging on Android
PDF
Plan 9カーネルにおけるTCP/IP実装(未完)
PDF
Runtime Bytecode Transformation for Smalltalk
IL2CPP: Debugging and Profiling
Python performance engineering in 2017
Python code for servo control using Raspberry Pi
Linux kernel bug hunting
Need to make a horizontal change across 100+ microservices? No worries, Sheph...
Effortless network response logging on Android
Plan 9カーネルにおけるTCP/IP実装(未完)
Runtime Bytecode Transformation for Smalltalk

What's hot (17)

PDF
The Conf 2019 - Elixir - Emerson Macedo
PDF
Logging library migrations - A case study for the Apache Software Foundation ...
PDF
What is new with JavaScript in Gnome: The 2021 edition
PDF
Why is a[1] fast than a.get(1)
PDF
Ansible on AWS
PDF
Kubernetes at Datadog Scale - Ara Pulido
PDF
grep.metacpan.org
PDF
Runtime Bytecode Transformation for Smalltalk
PDF
Async await functions in ruby
PDF
p4alu: Arithmetic Logic Unit in P4
PDF
Python仮想環境構築の基礎と ツールの比較
PDF
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
PDF
New Process/Thread Runtime
PDF
IL: 失われたプロトコル
PDF
Rpy2 demonstration
PPT
走向开源:提交CPAN模块Step by Step
PDF
Network & Filesystem: Doing less cross rings memory copy
The Conf 2019 - Elixir - Emerson Macedo
Logging library migrations - A case study for the Apache Software Foundation ...
What is new with JavaScript in Gnome: The 2021 edition
Why is a[1] fast than a.get(1)
Ansible on AWS
Kubernetes at Datadog Scale - Ara Pulido
grep.metacpan.org
Runtime Bytecode Transformation for Smalltalk
Async await functions in ruby
p4alu: Arithmetic Logic Unit in P4
Python仮想環境構築の基礎と ツールの比較
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
New Process/Thread Runtime
IL: 失われたプロトコル
Rpy2 demonstration
走向开源:提交CPAN模块Step by Step
Network & Filesystem: Doing less cross rings memory copy
Ad

Viewers also liked (20)

PPTX
Homework for ITB
PDF
CECAFÉ - Relatório Mensal FEVEREIRO 2016
PDF
LinkedIn foredrag hos Krifa i Aarhus
PDF
Relatório sobre o mercado de café da OIC - Junho 2016
PDF
CECAFÉ - Relatório Mensal SETEMBRO 2016
PDF
Seminário do Café do CCCMG
PPTX
Ardilla
PDF
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
PDF
CECAFÉ - Relatório Mensal JULHO 2016
PDF
Relatório sobre o mercado de café da OIC - Outubro 2016
PDF
LinkedIn foredrag hos FTF-A i Odense
PDF
Python meetup 1
PDF
En las fuentes de la alegria san francisco de sales -canonigo f.vidal
PDF
LinkedIn seminar - Workindenmark
PDF
Pesquisa & imprensa: orientações para um bom relacionamento
PPTX
A primera-guerra-mundial-1914-1918
PDF
CECAFÉ - Relatório Mensal MAIO 2016
PPTX
Baseball
PDF
CECAFÉ - Relatório Mensal ABRIL 2016
PPT
копия презентация обнов
Homework for ITB
CECAFÉ - Relatório Mensal FEVEREIRO 2016
LinkedIn foredrag hos Krifa i Aarhus
Relatório sobre o mercado de café da OIC - Junho 2016
CECAFÉ - Relatório Mensal SETEMBRO 2016
Seminário do Café do CCCMG
Ardilla
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
CECAFÉ - Relatório Mensal JULHO 2016
Relatório sobre o mercado de café da OIC - Outubro 2016
LinkedIn foredrag hos FTF-A i Odense
Python meetup 1
En las fuentes de la alegria san francisco de sales -canonigo f.vidal
LinkedIn seminar - Workindenmark
Pesquisa & imprensa: orientações para um bom relacionamento
A primera-guerra-mundial-1914-1918
CECAFÉ - Relatório Mensal MAIO 2016
Baseball
CECAFÉ - Relatório Mensal ABRIL 2016
копия презентация обнов
Ad

Similar to Python meetup 2 (20)

PPTX
Python Programming Introduction - II
PDF
Python lecture 02
PPTX
programming python all concepts PF) (2).pptx
PDF
week1.pdf
PDF
Hello, Python
PPTX
Welcome to Python Programming.pptx
PPTX
Introduction to Python Programing
PPTX
Introduction to python.pptx
PPT
week1.ppt
PPT
python installation in different Operating Systems.ppt
PDF
Introduction to Python Unit -1 Part .pdf
PDF
جلسه اول پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
PPTX
Phython Programming Language
PDF
intro.pptx (1).pdf
PDF
Pyhton-1a-Basics.pdf
PPTX
An Introduction To Python - Python, Print()
PPTX
Python Lecture 1
PPTX
python unit2.pptx
PPTX
Python Programming-Lesson 1- Installation and Environmental Set-up.pptx
PDF
Lecture01 - Fundamental Programming with Python Language
Python Programming Introduction - II
Python lecture 02
programming python all concepts PF) (2).pptx
week1.pdf
Hello, Python
Welcome to Python Programming.pptx
Introduction to Python Programing
Introduction to python.pptx
week1.ppt
python installation in different Operating Systems.ppt
Introduction to Python Unit -1 Part .pdf
جلسه اول پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
Phython Programming Language
intro.pptx (1).pdf
Pyhton-1a-Basics.pdf
An Introduction To Python - Python, Print()
Python Lecture 1
python unit2.pptx
Python Programming-Lesson 1- Installation and Environmental Set-up.pptx
Lecture01 - Fundamental Programming with Python Language

Recently uploaded (20)

PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
AI in Product Development-omnex systems
PDF
medical staffing services at VALiNTRY
PPTX
L1 - Introduction to python Backend.pptx
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
ai tools demonstartion for schools and inter college
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
history of c programming in notes for students .pptx
PDF
Understanding Forklifts - TECH EHS Solution
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Digital Strategies for Manufacturing Companies
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Nekopoi APK 2025 free lastest update
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
AI in Product Development-omnex systems
medical staffing services at VALiNTRY
L1 - Introduction to python Backend.pptx
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Operating system designcfffgfgggggggvggggggggg
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
ai tools demonstartion for schools and inter college
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Navsoft: AI-Powered Business Solutions & Custom Software Development
Wondershare Filmora 15 Crack With Activation Key [2025
history of c programming in notes for students .pptx
Understanding Forklifts - TECH EHS Solution
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Digital Strategies for Manufacturing Companies
Softaken Excel to vCard Converter Software.pdf
Odoo POS Development Services by CandidRoot Solutions
Nekopoi APK 2025 free lastest update
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf

Python meetup 2