Sonek Python Lesson 1 To 3
Sonek Python Lesson 1 To 3
JAVAN JUMA
Binary Language:
Through Translators.
(0s and 1s)
For Python: Interpreter
(Checks code; checks one
error at a time and stops.
• https://www.anaconda.com/download/
LESSON 1:VARIABLES AND DATA
TYPES
A variable is a small memory location.
A variable is created the moment you first assign a value to it.
Variables do not need to be declared with any particular type and
can even change type after they have been set.
Example:
Rules for Python variables:
Variable names are case-sensitive (age, Age and AGE are three
different variables)
Data Types