Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 15 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,18 @@ Python official page: https://www.python.org/
- [blogs](python/python-blogs/README.md)
- [web](python/web/README.md)

## Python Resources

- [Full Stack Python](https://www.fullstackpython.com/)
- [Python Cards](https://python.cards/)
- [fstrings.wtf](https://fstrings.wtf/)

## Python EOL and Support

- [Python EOL](https://endoflife.date/python)

## Python Cheatsheets

- [SpeedSheet - Python Sheet](https://speedsheet.io/s/python)
- [Comprehensive Python Cheatsheet](https://gto76.github.io/python-cheatsheet/)

## Python Forums

- [Discuss Python](https://discuss.python.org/latest)

## Python Web Tools

- [Python Tutor](https://pythontutor.com/)
- [Ty Web](https://types.ruff.rs/)
- [Ruff Web](https://play.ruff.rs/)
- ## Python Resources
- [Full Stack Python](https://www.fullstackpython.com/)
- [Python Cards](https://python.cards/)
- [fstrings.wtf](https://fstrings.wtf/)
- [Python EOL](https://endoflife.date/python)
- [SpeedSheet - Python Sheet](https://speedsheet.io/s/python)
- [Comprehensive Python Cheatsheet](https://gto76.github.io/python-cheatsheet/)

- ## Python Forums
- [Discuss Python](https://discuss.python.org/latest)

- ## Python Web Tools
- [Python Tutor](https://pythontutor.com/)
- [Ty Web](https://types.ruff.rs/)
- [Ruff Web](https://play.ruff.rs/)
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ alias run := run-python-example
@setup:
pre-commit install

[working-directory: 'examples']
[working-directory: 'python-examples']
@run-python-example target:
python3 {{ target }}
4 changes: 3 additions & 1 deletion python-examples/001_table_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
table = PrettyTable()

# Table tile
table.title = "test table"
table.title = "test table (add_row)"

# Table fields style
table.header_style = "upper"
Expand Down Expand Up @@ -53,6 +53,8 @@
# Cleanup result list with `.clear()` method.
result.clear()

table.title = "test table (add_rows)"

for coin in result:
table.add_rows(
[
Expand Down