sistema_bancario
1.0.0
Simple banking system, which manages only one account, containing four features according to the user's choice, being, deposit, withdrawal, extract and exit, each specified in a menu displayed when starting the program
while True
for the program to continue running, except if the customer wants them to stop;os
time
, to give the user a longer time to read the data output and clean the screen, avoiding visual pollution;if
else
condition structures for each type of expected information. More complex banking system, where a user can manage various accounts, containing new features, such as Criar Conta
, Criar Conta Bancária
and Listar Contas
. All code was structured in Python functions, with the def
command, for a better general visualization and understanding of the code
def
functions;/
and *
, respectively;