mirror of
https://gitea.com/Lerking/python-crash-course.git
synced 2026-01-06 16:50:07 +01:00
Added Advanced. /JL
This commit is contained in:
8
Advanced/Advanced.md
Normal file
8
Advanced/Advanced.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Advanced
|
||||
|
||||
- Creating modules
|
||||
-
|
||||
- Generating Excel files
|
||||
- Design patterns
|
||||
- Virtual environments
|
||||
- Executable python application
|
||||
49
Intermediate/Intermediate.md
Normal file
49
Intermediate/Intermediate.md
Normal file
@@ -0,0 +1,49 @@
|
||||
# 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
|
||||
0
Intermediate/basics/typing.py
Normal file
0
Intermediate/basics/typing.py
Normal file
49
README.md
49
README.md
@@ -1,50 +1 @@
|
||||
# Python 101 crash course
|
||||
|
||||
## Intemediate
|
||||
|
||||
__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
|
||||
|
||||
### 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
|
||||
|
||||
Reference in New Issue
Block a user