An open API service indexing awesome lists of open source software.

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

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
```