0
Hello, everyone. I’m a beginner in python (and programming in general) and I’m trying to learn from small, easy code. I was trying to make a script and I noticed that when I wanted to save it just didn’t save and didn’t go to the folder I wanted (no error text appears). When I removed the accent, it came back up and saved. The code I made was:
dia=input('Dia:')
mes=input('Mês:')
ano=input('Ano:')
print('Você nasceu no dia',dia,'de',mes,'de',2005,'. Correto?')
the code I made to solve was:
dia=input('Dia:')
mes=input('Mes:')
ano=input('Ano:')
print('Voce nasceu no dia',dia,'de',mes,'de',2005,'. Correto?')
You can try to change the default encoding. Which Operating System you are using?
– dvlcube