Python Introduction
Python Introduction
Via browser:
Anaconda.cloud
Colab.research.google.com
Variables
Variable = store.
Variable has datatype: number, text, list, etc
Python is dynamicially typed. No need to declare type of variable.
Variables stored in memory. Memory is transient so you need to save it.
Follow strict naming conventions
Variable names must start with letter or underscore. Cannot start with a number.
Names are case sensitive. case_sensitive, CASE_SENSITIVE are each a different
variables
Good variable names = readability, descriptive. PEP-8
Data types: