Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python
crash course - Coggle Diagram
Python
crash course
-unite 2 -
Naming Variables and simple data types
1-varaibles names can be only letters,numbers,and underscores.
can start only with letters and underscores but not numbers
2-space not allowed in variables name.
3-avoid using python keywords and functions names.
4-keep it short and descriptive.
5-be carful using lowercase l and upper case O confused with 1 and 0
-
-
- Number -
-
Multiple Assignment
x,y,z = 0,0,0
-
-
-