Created
December 23, 2021 15:51
-
-
Save BastinRobin/439dda7c950f6dae8ebc598a5de18586 to your computer and use it in GitHub Desktop.
Simple Python Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Python Learning Plan | |
- How to install python on Mac | |
- Install VSCode editor on Mac | |
- How to Run python code using terminal | |
- Variable and constants | |
- Scope of Variable | |
- Variable data types | |
- Integer {0,1,2,1000} | |
- Float { Decimal - 10.1, 2.01 } | |
- Boolean (True, False) | |
- List - ["orange", "apple", 1, 2, 0.2] | |
- Tuple - ("orange", "apple", 1, 2, 0.2) | |
- Dictionary - {Key value pair } - {"name": "Sri", "location": "California"} | |
- Functions | |
- Loops | |
- For loop | |
- While loop | |
- Class | |
- Methods | |
- Attributes | |
- Static methods |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment