This is in Python

Write two GUI programs that print the date as described below. If you wish you may use dictionaries.

First GUI:

Ask the user to input a date as a string: mm/dd/yyyy.

The output should look like February 4, 2015 ( if the date is 02/04/2015).

The output should show in the GUI itself.




Second GUI:

Ask the user to input a date as: name of the month, date, year. T

he out put should be a string mm/dd/yyyy.

The output should look like 02/04/2015 ( if the date is February 4, 2015). The output should show in the GUI itself.