/data_munging

Python - Extracting data and oop concepts used.

Primary LanguagePython

Python 3.6.9

Instructions

1- Run weather.py file to see the day with minimum temperature spread. 2- Run football.py file to see the team with smallest goal difference.

Part One: Weather Data

A program to output the day number (column one) with the smallest temperature spread (the maximum temperature is the second column, the minimum the third column).

Part Two: Soccer League Table

A program to print the name of the team with the smallest difference in ‘for’ and ‘against’ goals.

File structure:

├── common.py
├── common.pyc
├── data
│   ├── football.dat
│   └── weather.dat ├── football.py ├── pycache │   └── common.cpython-36.pyc
├── README.md
├── requirements.txt
├── tree.txt
└── weather.py