SlideShare a Scribd company logo
1 of 14
Download to read offline
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

What's hot

The Conf 2019 - Elixir - Emerson Macedo
The Conf 2019 - Elixir - Emerson MacedoThe Conf 2019 - Elixir - Emerson Macedo
The Conf 2019 - Elixir - Emerson MacedoEmerson Macedo
 
Logging library migrations - A case study for the Apache Software Foundation ...
Logging library migrations - A case study for the Apache Software Foundation ...Logging library migrations - A case study for the Apache Software Foundation ...
Logging library migrations - A case study for the Apache Software Foundation ...corpaulbezemer
 
What is new with JavaScript in Gnome: The 2021 edition
What is new with JavaScript in Gnome: The 2021 editionWhat is new with JavaScript in Gnome: The 2021 edition
What is new with JavaScript in Gnome: The 2021 editionIgalia
 
Why is a[1] fast than a.get(1)
Why is a[1]  fast than a.get(1)Why is a[1]  fast than a.get(1)
Why is a[1] fast than a.get(1)kao kuo-tung
 
Kubernetes at Datadog Scale - Ara Pulido
Kubernetes at Datadog Scale - Ara PulidoKubernetes at Datadog Scale - Ara Pulido
Kubernetes at Datadog Scale - Ara PulidoPROIDEA
 
Runtime Bytecode Transformation for Smalltalk
Runtime Bytecode Transformation for SmalltalkRuntime Bytecode Transformation for Smalltalk
Runtime Bytecode Transformation for SmalltalkMarcus Denker
 
Async await functions in ruby
Async await functions in rubyAsync await functions in ruby
Async await functions in rubyYusuke Sato
 
p4alu: Arithmetic Logic Unit in P4
p4alu: Arithmetic Logic Unit in P4p4alu: Arithmetic Logic Unit in P4
p4alu: Arithmetic Logic Unit in P4Kentaro Ebisawa
 
Python仮想環境構築の基礎と ツールの比較
Python仮想環境構築の基礎と ツールの比較Python仮想環境構築の基礎と ツールの比較
Python仮想環境構築の基礎と ツールの比較cocodrips
 
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...
PyParis2017 / Tutorial transcript - Function-as-a-service : a pythonic perspe...Pôle Systematic Paris-Region
 
New Process/Thread Runtime
New Process/Thread Runtime	New Process/Thread Runtime
New Process/Thread Runtime Linaro
 
IL: 失われたプロトコル
IL: 失われたプロトコルIL: 失われたプロトコル
IL: 失われたプロトコルRyousei Takano
 
走向开源:提交CPAN模块Step by Step
走向开源:提交CPAN模块Step by Step走向开源:提交CPAN模块Step by Step
走向开源:提交CPAN模块Step by Steppluschen
 
Network & Filesystem: Doing less cross rings memory copy
Network & Filesystem: Doing less cross rings memory copyNetwork & Filesystem: Doing less cross rings memory copy
Network & Filesystem: Doing less cross rings memory copyScaleway
 

What's hot (17)

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

Viewers also liked

Homework for ITB
Homework for ITBHomework for ITB
Homework for ITBakelanam
 
CECAFÉ - Relatório Mensal FEVEREIRO 2016
CECAFÉ - Relatório Mensal FEVEREIRO 2016CECAFÉ - Relatório Mensal FEVEREIRO 2016
CECAFÉ - Relatório Mensal FEVEREIRO 2016Luiz Valeriano
 
LinkedIn foredrag hos Krifa i Aarhus
LinkedIn foredrag hos Krifa i AarhusLinkedIn foredrag hos Krifa i Aarhus
LinkedIn foredrag hos Krifa i AarhusMorten Vium
 
Relatório sobre o mercado de café da OIC - Junho 2016
Relatório sobre o mercado de café da OIC - Junho 2016Relatório sobre o mercado de café da OIC - Junho 2016
Relatório sobre o mercado de café da OIC - Junho 2016Luiz Valeriano
 
CECAFÉ - Relatório Mensal SETEMBRO 2016
CECAFÉ - Relatório Mensal SETEMBRO 2016CECAFÉ - Relatório Mensal SETEMBRO 2016
CECAFÉ - Relatório Mensal SETEMBRO 2016Luiz Valeriano
 
Seminário do Café do CCCMG
Seminário do Café do CCCMGSeminário do Café do CCCMG
Seminário do Café do CCCMGLuiz Valeriano
 
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1ZHavicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1Z
Havicus Sri Lanka - Nilaveli Golden Paradise - villa AAA1ZHavicusSriLanka
 
CECAFÉ - Relatório Mensal JULHO 2016
CECAFÉ - Relatório Mensal JULHO 2016CECAFÉ - Relatório Mensal JULHO 2016
CECAFÉ - Relatório Mensal JULHO 2016Luiz Valeriano
 
Relatório sobre o mercado de café da OIC - Outubro 2016
Relatório sobre o mercado de café da OIC - Outubro 2016Relatório sobre o mercado de café da OIC - Outubro 2016
Relatório sobre o mercado de café da OIC - Outubro 2016Luiz Valeriano
 
LinkedIn foredrag hos FTF-A i Odense
LinkedIn foredrag hos FTF-A i OdenseLinkedIn foredrag hos FTF-A i Odense
LinkedIn foredrag hos FTF-A i OdenseMorten Vium
 
Python meetup 1
Python meetup 1Python meetup 1
Python meetup 1Vic Yang
 
En las fuentes de la alegria san francisco de sales -canonigo f.vidal
En las fuentes de la alegria   san francisco de sales -canonigo f.vidalEn las fuentes de la alegria   san francisco de sales -canonigo f.vidal
En las fuentes de la alegria san francisco de sales -canonigo f.vidalLola González Barbado
 
LinkedIn seminar - Workindenmark
LinkedIn seminar - WorkindenmarkLinkedIn seminar - Workindenmark
LinkedIn seminar - WorkindenmarkMorten Vium
 
Pesquisa & imprensa: orientações para um bom relacionamento
Pesquisa & imprensa: orientações para um bom relacionamentoPesquisa & imprensa: orientações para um bom relacionamento
Pesquisa & imprensa: orientações para um bom relacionamentoLuiz Valeriano
 
A primera-guerra-mundial-1914-1918
A primera-guerra-mundial-1914-1918A primera-guerra-mundial-1914-1918
A primera-guerra-mundial-1914-1918samudiego
 
CECAFÉ - Relatório Mensal MAIO 2016
CECAFÉ - Relatório Mensal MAIO 2016CECAFÉ - Relatório Mensal MAIO 2016
CECAFÉ - Relatório Mensal MAIO 2016Luiz Valeriano
 
CECAFÉ - Relatório Mensal ABRIL 2016
CECAFÉ - Relatório Mensal ABRIL 2016CECAFÉ - Relatório Mensal ABRIL 2016
CECAFÉ - Relatório Mensal ABRIL 2016Luiz Valeriano
 
копия презентация обнов
копия презентация обновкопия презентация обнов
копия презентация обновtanstantin
 

Viewers also liked (20)

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

Similar to Python meetup 2

Python Programming Introduction - II
Python Programming Introduction  - IIPython Programming Introduction  - II
Python Programming Introduction - IIArnab Chakraborty
 
Pyjion - a JIT extension system for CPython
Pyjion - a JIT extension system for CPythonPyjion - a JIT extension system for CPython
Pyjion - a JIT extension system for CPythonAnthony Shaw
 
Writing a Python C extension
Writing a Python C extensionWriting a Python C extension
Writing a Python C extensionSqreen
 
PyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsPyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsHenry Schreiner
 
Python Tutorial | Python Programming Language
Python Tutorial | Python Programming LanguagePython Tutorial | Python Programming Language
Python Tutorial | Python Programming Languageanaveenkumar4
 
First python project
First python projectFirst python project
First python projectNeetu Jain
 
intro.pptx (1).pdf
intro.pptx (1).pdfintro.pptx (1).pdf
intro.pptx (1).pdfANIKULSAIKH
 
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdfThe Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdfssuser8b3cdd
 
OpenGurukul : Language : Python
OpenGurukul : Language : PythonOpenGurukul : Language : Python
OpenGurukul : Language : PythonOpen Gurukul
 
Introduction to python for Beginners
Introduction to python for Beginners Introduction to python for Beginners
Introduction to python for Beginners Sujith Kumar
 
JIT compilation for CPython
JIT compilation for CPythonJIT compilation for CPython
JIT compilation for CPythondelimitry
 
Chapter 1 Class 12 Computer Science Unit 1
Chapter 1 Class 12 Computer Science Unit 1Chapter 1 Class 12 Computer Science Unit 1
Chapter 1 Class 12 Computer Science Unit 1ssusera7a08a
 
Python Programming
Python ProgrammingPython Programming
Python Programmingsameer patil
 
Revision of the basics of python1 (1).pdf
Revision of the basics of python1 (1).pdfRevision of the basics of python1 (1).pdf
Revision of the basics of python1 (1).pdfoptimusnotch44
 
Python tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academyPython tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academyTIB Academy
 
Two-level Just-in-Time Compilation with One Interpreter and One Engine
Two-level Just-in-Time Compilation with One Interpreter and One EngineTwo-level Just-in-Time Compilation with One Interpreter and One Engine
Two-level Just-in-Time Compilation with One Interpreter and One EngineYusuke Izawa
 
Tutorial_Python1.pdf
Tutorial_Python1.pdfTutorial_Python1.pdf
Tutorial_Python1.pdfMuzamilFaiz
 

Similar to Python meetup 2 (20)

Python Programming Introduction - II
Python Programming Introduction  - IIPython Programming Introduction  - II
Python Programming Introduction - II
 
Pyjion - a JIT extension system for CPython
Pyjion - a JIT extension system for CPythonPyjion - a JIT extension system for CPython
Pyjion - a JIT extension system for CPython
 
Writing a Python C extension
Writing a Python C extensionWriting a Python C extension
Writing a Python C extension
 
PyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsPyCon2022 - Building Python Extensions
PyCon2022 - Building Python Extensions
 
Python Tutorial | Python Programming Language
Python Tutorial | Python Programming LanguagePython Tutorial | Python Programming Language
Python Tutorial | Python Programming Language
 
Introduction python
Introduction pythonIntroduction python
Introduction python
 
First python project
First python projectFirst python project
First python project
 
intro.pptx (1).pdf
intro.pptx (1).pdfintro.pptx (1).pdf
intro.pptx (1).pdf
 
5.Playtime
5.Playtime5.Playtime
5.Playtime
 
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdfThe Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
The Python Book_ The ultimate guide to coding with Python ( PDFDrive ).pdf
 
OpenGurukul : Language : Python
OpenGurukul : Language : PythonOpenGurukul : Language : Python
OpenGurukul : Language : Python
 
Introduction to python for Beginners
Introduction to python for Beginners Introduction to python for Beginners
Introduction to python for Beginners
 
Python Flavors
Python FlavorsPython Flavors
Python Flavors
 
JIT compilation for CPython
JIT compilation for CPythonJIT compilation for CPython
JIT compilation for CPython
 
Chapter 1 Class 12 Computer Science Unit 1
Chapter 1 Class 12 Computer Science Unit 1Chapter 1 Class 12 Computer Science Unit 1
Chapter 1 Class 12 Computer Science Unit 1
 
Python Programming
Python ProgrammingPython Programming
Python Programming
 
Revision of the basics of python1 (1).pdf
Revision of the basics of python1 (1).pdfRevision of the basics of python1 (1).pdf
Revision of the basics of python1 (1).pdf
 
Python tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academyPython tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academy
 
Two-level Just-in-Time Compilation with One Interpreter and One Engine
Two-level Just-in-Time Compilation with One Interpreter and One EngineTwo-level Just-in-Time Compilation with One Interpreter and One Engine
Two-level Just-in-Time Compilation with One Interpreter and One Engine
 
Tutorial_Python1.pdf
Tutorial_Python1.pdfTutorial_Python1.pdf
Tutorial_Python1.pdf
 

Recently uploaded

5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 

Recently uploaded (20)

5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 

Python meetup 2