You are on page 1of 11

Python: Getting

Started
INTRODUCTION

Bo Milanovich
PYTHON WIZARD

@pythonbo pythonbo.com
Python: Getting Started

Python basics – Simple,


Python all
data types, beautiful,
the
functions, classes powerful and
things!
cross-platform
What Makes Python so
Amazing?
Using Python

Automation Science Desktop

Android Web Machine


Learning
My Cross-platform desktop application with
Qt
Uses
Django and Flask web apps
of Home automation with

Python Python
Python vs The Others
// Java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World")
}
}

# Python 3
print("Hello World")
Python 2 vs Python
3
Python 2 vs Python 3

Python Python 3
2
New features being added
Maintained, but no new
Unicode support by default
features End of Life (EOL)
Cleared some Python 2
in 2020 Still default on
confusion print(“Hello
many systems print
World”)
“Hello World”
Minor differences from Python 2
Installing
Python
Running a Python Program

# hello.py file contents


print(“Hello World”)
Installing
PyCharm

You might also like