I have a string as Julian date like \"16152\" meaning 152\'nd day of 2016 or \"15234\" meaning 234\'th day of 2015.
\"16152\"
\"15234\"
How can I convert these
Easy way
print datetime.datetime.now().strftime("%y%j")
print datetime.datetime.strptime('19155', '%y%j').strftime("%d-%m-%Y")