APO-Bankomat-priv/main.py

10 lines
271 B
Python
Raw Normal View History

2021-10-06 11:28:37 +02:00
from src.tools.tools import *
from src.modules.Card import Card
2021-10-12 21:26:15 +02:00
from src.modules.Account import Acount
import init
2021-10-06 11:28:37 +02:00
2021-10-12 21:26:15 +02:00
card = cards[int(input("Chose a card from 1 to " + str(len(cards)) + ": ")) - 1]
2021-10-06 11:28:37 +02:00
2021-10-12 21:26:15 +02:00
PrintCardInfo(Card(card["number"], card["pin"], card["type"]))