Eml4930/Eml6934: Lecture 00 - About Python: Python2 Vs Python3, Hello World, Ipython, Notebooks, Instal-Lation
Eml4930/Eml6934: Lecture 00 - About Python: Python2 Vs Python3, Hello World, Ipython, Notebooks, Instal-Lation
Python
Python2 vs Python3, Hello World, IPython, Notebooks, Instal-
lation
Charles Jekel
August 24, 2017
About me
• 12 out of 14 homework — 60 %
• 2 quizzes — 10 %
• 1 final exam — 30 %
2
Intended audience
Course description
Python is a general purpose programming language. Course covers the
basics, linear algebra, plotting, and more to prepare students for solving
numerical problems. Prerequisite: COP 2271 MATLAB or equivalent.
You already know how to program in some language.
You are interested in doing numerical analysis in Python.
3
What is Python? - python.org
Python is
4
Python is a very popular programming language
For the first time ever, IEEE Spectrum rated Python the most popular
programming language in 2017. http://spectrum.ieee.org/
computing/software/the-2017-top-programming-languages
5
Built using Python
6
Why Python? - Free, Open, and Powerful
7
Python2 vs Python3
8
Python2 vs Python3 comparison
Python2 wins
Python3 wins
• Speed - Python 2.7 will always
• Unicode identifiers
be faster
• Strings unicode by default
• Legacy
• Simple matrix multiplication
• Python updates won’t break
with @
your code!
9
TensorFlow and Windows - you need Python 3.5
11
python3 helloWorld2.py
12
python3 helloWorld3.py
With Python 3.X print must include an open and closed parentheses.
The following code is saved as helloWorld3.py
print(’hello world’)
You can run this code with both python2 and python3.
13
If you want to write code for Python 2.7 and Python 3.X
Your *.py script should always begin with these first three lines. The
following code was saved as helloWorld.py.
14
Using future will force you to write in the Python 3.X syntax
15
Python 3.X allows you to use unicode identifiers
16
Comparing strings to numbers in Python 2 is weird
The following is input and output with python2 (it is not suppose to
make any sense).
True
’123’ > 0
True
False
’123’ < 0
False
Do not compare different data types in Python 2.X!
17
Python 3.X fixes string to number comparison
by not letting you compare data types that don’t make sense
18
Python 2.7 vs Python 3.X depends on you
Syntax differences:
Additional resources:
• http://python-future.org/imports.html
• https://wiki.python.org/moin/Python2orPython3
• https://learntocodewith.me/programming/python/
python-2-vs-python-3/
No more time for Python 2.7 vs Python 3.X. Pick one. Everything we do
in this course will be compatible in both versions. You’re allowed to use
the version that best suits you.
19
Install python - do not install from https://python.org
20
Install Python - two choices
Only a few months ago did Canopy start support Python 3.X, while
Anaconda has supported Python 3.X for some time. I don’t like Spyder
IDE included with Anaconda because you can’t bind crt + / to
comment..
21
Install Anaconda if ...
You want
22
Install Enthought Canopy if ...
You want
23
If you are coming from MATLAB ...
Useful resources
http://mathesaurus.sourceforge.net/matlab-numpy.html
https://docs.scipy.org/doc/numpy-dev/user/
numpy-for-matlab-users.html
24
Install Python - Anaconda
Anaconda gives you more control over which Python version. Also
Anaconda updates more frequently.
https://www.continuum.io/downloads
25
GOLDEN RULE with software...
my golden rule
If you don’t know what advanced options do in software (especially when
installing new software), leave the advanced options to their default
setting. This will come up during the Anaconda installation.
26
Anaconda - Advanced Options
Checking the top box will add the Anaconda installation to your PATH
environment variable. Do this on Windows if you want access to python,
ipython, pip, and conda from any command prompt or shell on your
system for your user. If you don’t check the top box, you can always
access these applications from the Anaconda Prompt.
28
Install Python - Enthought Canopy
With Enthought Canopy you may either install Python 2.7 or Python 3.5
https://store.enthought.com/downloads/
29
Canopy no longer sets up your environment variables by de-
fault...
30
Canopy editor IDE installed with Enthought Canopy
31
Anaconda vs Enthought Canopy doesn’t matter for this course
... but what does matter is that you have a working Python installation
with pre-built scientific libraries.
32
If you added Python to your PATH - Make sure it works
You can run python from the command line by typing python in your
favorite shell/command prompt.
33
If you did not add Python to your PATH
34
HW 00: due one week from today - turn in online before class
starts
This HW will appear as a Quiz in Canvas. If you don’t see the canvas
Quiz please let me know!
35
Tools used to make this presentation
• https://en.wikipedia.org/wiki/Beamer_(LaTeX)
• https://www.latex-project.org/
• http://www.xm1math.net/texmaker/
• https://github.com/matze/mtheme
• https://www.ctan.org/pkg/minted?lang=en
• https://www.ctan.org/pkg/pygmentex?lang=en
• https://pdfpc.github.io/
36