python version of exercise

This commit is contained in:
Emily Bache
2019-08-07 08:47:07 +02:00
parent 358dab1c5b
commit cd583380f5
9 changed files with 190 additions and 0 deletions

17
python/tests/invoice.json Normal file
View File

@@ -0,0 +1,17 @@
{
"customer": "BigCo",
"performances": [
{
"playID": "hamlet",
"audience": 55
},
{
"playID": "as-like",
"audience": 35
},
{
"playID": "othello",
"audience": 40
}
]
}