Skip to content

Commit 9a18513

Browse files
committed
Type Checking with mypy exercise
1 parent 16ace89 commit 9a18513

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

AYK/typechecking_mypy.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
def open_account(balances, name, amount):
2+
balances[name] = amount
3+
4+
def sum_balances(accounts):
5+
total = 0
6+
for name, pence in accounts.items():
7+
print(f"{name} had balance {pence}")
8+
total += pence
9+
return total
10+
11+
def format_pence_as_string(total_pence):
12+
if total_pence < 100:
13+
return f"{total_pence}p"
14+
pounds = int(total_pence / 100)
15+
pence = total_pence % 100
16+
return f"£{pounds}.{pence:02d}"
17+
18+
balances = {
19+
"Sima": 700,
20+
"Linn": 545,
21+
"Georg": 831,
22+
}
23+
24+
open_account(balances,"Tobi", 9.13)
25+
open_account(balances,"Olya", "£7.13")
26+
27+
total_pence = sum_balances(balances)
28+
total_string = format_pence_as_string(total_pence)
29+
30+
print(f"The bank accounts total {total_string}")

0 commit comments

Comments
 (0)