Answers for "covert date frome dd/mm/yy to yyyy-mm-dd python"

PHP
2

php convert date from dd/mm/yyyy to yyyy-mm-dd

$date = DateTime::createFromFormat('d/m/Y', "24/04/2012");
echo $date->format('Y-m-d');
Posted by: Guest on September-14-2020
-1

python date from yy/mm/dd to yy-mm-dd

lastconnection = datetime.strptime("21/12/2008", "%d/%m/%Y").strftime('%Y-%m-%d')
Posted by: Guest on September-02-2020

Code answers related to "covert date frome dd/mm/yy to yyyy-mm-dd python"

Browse Popular Code Answers by Language