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

https://github.com/sahilkhanna/python-exercises

A series of python exercises/assignments
https://github.com/sahilkhanna/python-exercises

assignment exercise iot puzzle python python3

Last synced: 21 days ago
JSON representation

A series of python exercises/assignments

Awesome Lists containing this project

README

          

# About

A bunch of Python based exercises or problems.

1. [IoT exercise to find relation between users, devices & policies.](/iot-users-devices-policies)
2. [Calculate Perimeter of n number of points on xy plane.](/perimeter)

## Setup

It is recomended to use virtual environment to test these exercises.

To create a virtual environment directory ```.venv``` run the following command in terminal/command line

``` shell

python3 -m venv .venv
```

Then activate it via -

On Windows, run:

``` shell

.venv\Scripts\activate.bat
```

On Unix or MacOS, run:

``` shell

source .venv/bin/activate
```