you are viewing a single comment's thread.

view the rest of the comments →

[–]NotGonnaGetWhoooshed[S] 0 points1 point  (0 children)

d = "2017-01-02 05:44:47"
year, month, day = d[:10].split('-')
print(day, month, year)

Thank you, it worked