Set 110 Practical Question

⭐ Q10. Currency Notes की संख्या निकालना

Example Code (Read Only):


currency = [2000,500,200,100,50,20,10,5]
amt = int(input("Enter amount: "))
notes = {c:0 for c in currency}
notes[c] = amt // c
amt %= c
m = int(input("Enter month: "))
d = int(input("Enter day: "))
week = {
wd = date.isoweekday(date(2020, m, d))

Python Online Editor