I want to be a simple example of:
test = input('Letra: ')
If the letter you typed is 'a' (here I have a problem)
print('exemplo')
I want you to see a message when you type "a" ..........
I want to be a simple example of:
test = input('Letra: ')
If the letter you typed is 'a' (here I have a problem)
print('exemplo')
I want you to see a message when you type "a" ..........
I do not quite understand what you have to do. Do you want to print only if the character you received is the letter "a"?
If so, try:
test = input("Letra: ")
if(test == 'a'):
print("mensagem")