https://github.com/chunkyguy/google-python-exercises
Exercises from https://developers.google.com/edu/python
https://github.com/chunkyguy/google-python-exercises
Last synced: 3 days ago
JSON representation
Exercises from https://developers.google.com/edu/python
- Host: GitHub
- URL: https://github.com/chunkyguy/google-python-exercises
- Owner: chunkyguy
- License: apache-2.0
- Created: 2026-06-21T11:08:41.000Z (16 days ago)
- Default Branch: main
- Last Pushed: 2026-06-21T11:18:16.000Z (16 days ago)
- Last Synced: 2026-06-21T14:08:22.950Z (16 days ago)
- Language: HTML
- Size: 271 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Notice: NOTICE.txt
Awesome Lists containing this project
README
# Exercises for Google's Python Class
https://developers.google.com/edu/python
## Set up
Start virtual environment:
```sh
python3 -m venv .venv
source .venv/bin/activate
```
Stop virtual environment:
```sh
deactivate
```