3
How to take the current date and format in Brazilian format
'28/10/2019'
3
How to take the current date and format in Brazilian format
'28/10/2019'
4
try this using datetime
from datetime import datetime
print(datetime.today().strftime('%d/%m/%Y'))
Browser other questions tagged python datetime date
You are not signed in. Login or sign up in order to post.
thanks, it worked
– Ruben Borges Ramos
@Rubenborgesramos do not write solved in the title, just mark the answer as correct, the site has system to indicate what is solved so, do not need to use "manual" how to change titles ;)
– Guilherme Nascimento
@Rubenborgesramos glad to help agr only mark the answer as correct
– Guilherme Henriques