As sysadmins we are constantly reinventing ourselves, we are always researching and learning.
- Getting started
- Programming in Python
- Variables → app.py
- Data Types → data_types.py
- Strings → strings.py
- Numbers → numbers.py
- Lists → lists.py
- Dictionaries → dictionaries.py
- Type Casting → type_casting.py
- Conditionals → conditionals.py
- Comparison Operators → comparison_operators.py
- Logical Operators → logical_operators.py
- Loops → loops.py
- Functions → functions.py
- Modules → modules.py mod.py
- Classes → classes.py
- File Handling → files.py
- Error Handling → error_handling.py
- Programming Project
- Library system → Library management system
- book.py → Defines the class (Book), with its characteristics.
- app.py → Defines the function menu and is the front end of the system.
- my_functions.py → Defines the functions to be performed
$ python app.py Press the specific button for that action 1-Create a new book 2-Save books locally 3-Load books from the disk 4-Issue book 5-Return a book 6-Update a book 7-Show all books 8-Show book
- TODO
- Library system → Library management system