I need to convert date string “2013-1-25” to string “1/25/13” in python.
I looked at the datetime.strptime but still can’t find a way for this.
I need to convert date string 2013-1-25 to string 1/25/13 in python. I looked
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I assume I have
import datetimebefore running each of the lines of code belowprints
"01/25/13".If you can’t live with the leading zero, try this:
This prints
"1/25/13".EDIT: This may not work on every platform: