Lecture 3
Tables
DATA 8
Summer 2024
Announcements
Python
Python
(Demo)
Review of Python Concepts
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)
Review of Function Concepts
How many errors are in this code?
ⓘ
Click Present with Slido or install our Chrome extension to activate this poll while presenting.
Tables
Table Structure
Name | Code | Area (m2) |
California | CA | 163696 |
Nevada | NV | 110567 |
Label
Column
Row
(Demo)
Some Table Operations