Initial commit

This commit is contained in:
David Beazley
2023-07-16 20:21:00 -05:00
parent 82e815fab2
commit 7d4b30154a
259 changed files with 600233 additions and 2 deletions

12
Solutions/1_3/pcost.py Normal file
View File

@@ -0,0 +1,12 @@
# pcost.py
total_cost = 0.0
with open('../../Data/portfolio.dat', 'r') as f:
for line in f:
fields = line.split()
nshares = int(fields[1])
price = float(fields[2])
total_cost = total_cost + nshares * price
print(total_cost)