-1
I work with text production and would like to make a search program that returns pre-formatted information so that I only copy and paste in the text editor.
I’m a beginner in Python, so my script is very rudimentary. I did the following:
_joao = 'João Silva, nascido na cidade tal, é engenheiro, ...'
_pedro = 'Pedro da Silva, nascido na cidade tal, é empresário, ...'
nome = ''
while nome != 'sair':
def busca():
nome = input('Digite um nome a ser buscado ou digite "sair" para fechar o programa: ')
if nome == 'joao':
print (_joao, '\n')
elif nome == 'pedro':
print (_pedro, '\n')
elif nome == 'sair':
exit()
else:
print ('Nome não encontrado')
busca()
What is the best way to do this kind of program?
The best way to program is to follow the standards set by the community, your question is very comprehensive, there is some error in the code?
– Cedric S.