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
- Host: GitHub
- URL: https://github.com/sahilkhanna/python-exercises
- Owner: sahilkhanna
- Created: 2022-01-16T08:58:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-16T09:37:21.000Z (over 4 years ago)
- Last Synced: 2025-10-06T06:43:38.900Z (9 months ago)
- Topics: assignment, exercise, iot, puzzle, python, python3
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```