Lecture 3
Tables
Fall 2021
Announcements
Weekly Goals
Python
Python
(Demo)
Names
Assignment Statements
hours_per_wk = 24*7
Name
Any expression
(Demo)
Functions
Anatomy of a Call Expression
f ( 27)
What function to call
Argument to the function
"Call f on 27."
Anatomy of a Call Expression
max ( 15 , 27 )
What function to call
First argument
Second argument
(Demo)
Tables
Table Structure
Name | Code | Area (m2) |
California | CA | 163696 |
Nevada | NV | 110567 |
Label
Column
Row
(Demo)
Some Table Operations