mirror of
https://gitea.com/Lerking/python-crash-course.git
synced 2026-01-07 09:10:08 +01:00
885 B
885 B
Intermediate
Covering the very basics of Python functionality.
- Naming convention
- Im-/mutable objects
- Typing (Not writing, but type definition)
Lesson 1
Covering entry level introduction into Python programming.
- Defining and calling functions
- The correct way to launch a Python file
- Return values
- Multiple return values
Lesson 2
Introducing classes and methods.
- Defining classes
- Proper initiation of a class instance
- Class inheritance
- Working with class instances
Lesson 3
Working with files.
- Read/write text files
- Context manager
- Working with xml files
Lesson 4
Introducing loops.
- While (Continuous loop. Repeats until it returns False)
- Looping text lines
- Looping lists
- Enumerating list looping
Lesson 5
Introduction to modules.
- Importing modules
- Importing specific classes from modules