feat: Initial commit

This commit is contained in:
2024-03-22 17:01:42 +01:00
parent 954985f39a
commit c343ff6e93
106 changed files with 143428 additions and 1 deletions

17
Laboratorio5/pin.py Normal file
View File

@@ -0,0 +1,17 @@
def main():
pin = "1234"
errCount = 0
while errCount < 3:
uinput = input("Insert pin: ")
if uinput == pin:
print("Your PIN is correct")
return
print("Your PIN is incorrect")
errCount += 1
print("You bank card is blocked")
main()