Skip to content

Instantly share code, notes, and snippets.

@BastinRobin
Created December 23, 2021 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BastinRobin/439dda7c950f6dae8ebc598a5de18586 to your computer and use it in GitHub Desktop.
Save BastinRobin/439dda7c950f6dae8ebc598a5de18586 to your computer and use it in GitHub Desktop.
Simple Python Class
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