Answers for "how to change the dd-mm-yyyy to yyyy-mm-dd using numpy datetime64"

PHP
3

how to set datetime format in python

import datetime

x = datetime.datetime(2018, 9, 15)

print(x.strftime("%b %d %Y %H:%M:%S"))
Posted by: Guest on May-15-2020
0

php change date format from d/m/y to y-m-d

$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));
Posted by: Guest on February-27-2020

Code answers related to "how to change the dd-mm-yyyy to yyyy-mm-dd using numpy datetime64"

Browse Popular Code Answers by Language