Write a program that will input a single string for a date inthe format “11/21/2019”. Using the string splitmethod, separate the string into month, date, year tokens.Translate the date into the format of a single resulting string”November 21st, 2019″, corresponding to the input date. Yourprogram must be able to handle any months of the year, and any dateusing “st” for the first, “nd” for the second day, “rd” for thethird day, and “th” for the other days of the month.
Expert Answer
Answer to Write a program that will input a single string for a date in the format “11/21/2019”. Using the string split method, se…