Python
Python
• Computer/ computation
• Python basic
• Mathematical operation
• python variable and type
COMPUTER?
}
• Sequence of simple steps
• Flow of control process that specifies when
Algorithm
each step is executed
• A means of determining when to stop
COMPUTER ARE MACHINES
MEMORY
CONTROL ARITHMETIC
INPUT OUTPUT
UNIT LOGIC UNIT
Program counter Do primitive ops
STORED PROGRAM COMPUTE
• Primitive constructs
➡ English: words
➡ Programming language: numbers, strings, operators
SYNTAX
• Syntax
- English:
➡ “cat dog boy“ -> not syntactically valid
➡ “cat hugs boy“ -> syntactically valid
- Programming language: numbers, strings, operators
➡ “hi“5 -> not syntactically valid
➡ 3.2*5. -> syntactically valid
STATIC SEMANTICS
• Syntactic errors
➡ common and easily caught
• Static semantics errors
➡ some languages check for these befor running program can cause
unpredictable behavior
• No semantic error but different meaning than what programmer intended
➡ program crashes, stops running
➡ program runs forever
➡ program gives an answer but different than expected
PYTHON PROGRAM
pi_approx = 22/7
• value stored in computer memory
• an assignment binds name to value
• retrieve value associated with name of variable by invoking the name, by typing pi
ATTACHMENTS
Trevor Hastie, Robert Tibshirani, and Jerome Friedman are professors of statistics at
Stanford University. They are prominent researchers in this area: Hastie and Tibshirani Second Edition
developed generalized additive models and wrote a popular book of that title. Hastie co-
developed much of the statistical modeling software and environment in R/S-PLUS and
invented principal curves and surfaces. Tibshirani proposed the lasso and is co-author of the
very successful An Introduction to the Bootstrap. Friedman is the co-inventor of many data-
mining tools including CART, MARS, projection pursuit and gradient boosting.
S TAT I S T I C S
----
› springer.com
PROGRAMMING LANGUAGE/ PACKAGE
REQUIREMENT
Visualization ML
DL
IDE
Scientific computing
Data processing/
analysis Natural Language
processing
LEARNING BY CODING