Question
Dates are written in at least two common ways: in the US, its common to write dates as mm/dd/yyyy that is, the month as a
Dates are written in at least two common ways: in the US, its common to write dates as mm/dd/yyyy that is, the month as a two-digit number, the day as a two-digit number, and the year as a four-digit number, like this for March 10, 2021: 03/10/2021 However, in other parts of the world, the date is commonly written as dd/mm/yyyy , so March 10, 2021, would be written as 10/03/2021. This can cause a huge problem in computer systems when both date formats may be used in input files! Write a function to turn a US-format date into the other standard format. Hint: you may want to use split()
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started