-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
889ec23
commit 01cf9ed
Showing
6 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/.quarto/ | ||
_book/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
project: | ||
type: book | ||
|
||
book: | ||
title: "Python Foundation Course - ZeOmega" | ||
author: "Anand Chitipothu" | ||
date: "5/13/2024" | ||
chapters: | ||
- index.qmd | ||
- syllabus.qmd | ||
- references.qmd | ||
|
||
bibliography: references.bib | ||
|
||
format: | ||
html: | ||
theme: cosmo | ||
pdf: | ||
documentclass: scrreprt | ||
|
||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Preface {.unnumbered} | ||
|
||
Welcome to the Python Foundation Course. | ||
|
||
Python Foundation Course is a hands-on training to learn the essentials of the Python programming language, understand the best practices and idioms of the language. |
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# References {.unnumbered} | ||
|
||
::: {#refs} | ||
::: |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Course Outline {.unnumbered} | ||
|
||
## Syllabus | ||
|
||
### Day 1: Introduction to Python | ||
|
||
- Getting started | ||
- The program structure | ||
- Data structures | ||
- Control structures | ||
|
||
### Day 2: Solving Problems with Python | ||
|
||
- Working with files | ||
- Working with APIs | ||
- Working with text | ||
- Writing command-line applications | ||
|
||
### Day 3: Professional Software Development with Python | ||
|
||
- Classes & Exceptions | ||
- Organizing Python code | ||
- Testing Python programs | ||
- Writing maintainable code | ||
- Logging | ||
|
||
### Day 4: Working with SQL and SQLAlchemy | ||
|
||
- Working with databases | ||
- Introduction to SQLAlchemy | ||
- Composing queries using SQLAlchemy | ||
- Understaing query performance | ||
|
||
### Day 5: Advanced Python and Best Practices | ||
|
||
- Introduction to new features of Python 3 | ||
- Decorators | ||
- Iterators and generators | ||
- Dataclasses | ||
- Static typing | ||
- Context managers | ||
- Writing maintainable code |