Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #B6529550_ยงวุฒิ พัฒนะคุณกนก_Group 2_#36
- def moneyWallet():
- global b_total
- b20=int(input('The number of 20-baht banknote is : '))
- b50=int(input('The number of 50-baht banknote is : '))
- b100=int(input('The number of 100-baht banknote is : '))
- b20_p=b20*20
- b50_p=b50*50
- b100_p=b100*100
- b_total=b20_p+b50_p+b100_p
- print(f'You have tototally {b_total} baht.')
- def getGiftvoucher():
- if b_total>500:
- giftcard=b_total//500
- print(f'You got {giftcard} gift card')
- else:
- print('You miss it')
- moneyWallet()
- getGiftvoucher()
Advertisement
Add Comment
Please, Sign In to add comment