1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# When should I do my washing?
_This example looks at the forecast for the next 5 days and suggests which day
(if any) would be best for hanging your washing out to dry._
### Required Modules
* [datapoint](https://github.com/perseudonymous/datapoint-python)
## Learning Objective
Make a slightly more complex decision by comparing values provided by DataPoint.
## Example Usage
```Shell
python washing.py
```
## Example Output
```
London
Monday is the best day with a score of 26
```
|