Skip to content

Instantly share code, notes, and snippets.

View AliMBajwa's full-sized avatar

Ali Bajwa AliMBajwa

View GitHub Profile

Keybase proof

I hereby claim:

  • I am AliMBajwa on github.
  • I am alibajwa (https://keybase.io/alibajwa) on keybase.
  • I have a public key whose fingerprint is 0BF3 5105 CC8C C102 D2EF 642C 3413 5CF6 1132 8F43

To claim this, I am signing this object:

@AliMBajwa
AliMBajwa / keybase.md
Created May 13, 2020 13:56
my keybase

Keybase proof

I hereby claim:

  • I am AliMBajwa on github.
  • I am alibajwa (https://keybase.io/alibajwa) on keybase.
  • I have a public key whose fingerprint is 0BF3 5105 CC8C C102 D2EF 642C 3413 5CF6 1132 8F43

To claim this, I am signing this object:

@AliMBajwa
AliMBajwa / ATM - Lite version - finished.py
Last active August 21, 2016 19:34
ATM - Lite Version
def round_down(num,divisor):
return num - (num % divisor)
menu = ["1 - Display a balance", "2 - Withdraw Funds", "3 - Deposit Funds", "9 - Return card"]
menu2 = ["1 - £10", "2 - £20", "3 - £40", "4 - 60", "5 - £80", "6 - £100", "7 - Other amount in multiples of £10",
"8 - Return to main menu", "9 - Return card"]
bal = 67.14
loopContOne = True