etl exercise

This commit is contained in:
Xevion
2019-07-23 23:56:28 -05:00
parent 3f75f2e56f
commit b2caf9832e
4 changed files with 142 additions and 0 deletions

2
python/etl/etl.py Normal file
View File

@@ -0,0 +1,2 @@
def transform(legacy):
return {value.lower() : key for key, values in legacy.items() for value in values}