Using the knowledge in computational language in python it is possible to write a code that reads a string from the user containing a date in the form mm/dd/yyyy.
<h3>Writting the code:</h3>
<em>months_info = ['January', 'February','March','April', 'May','June', 'July','August', 'September', 'October', 'November', 'December']</em>
<em>date = input('Enter a date using the mm/dd/yyyy format ')</em>
<em>m, d, y = date.split('/')</em>
<em>m = int(m) - 1</em>
<em>name_of_month = months_info[m]</em>
<em>print('{} {}, {}'.format(name_of_month, d, y))</em>
See more about python at brainly.com/question/13437928
#SPJ1