Answer:
The program in Python is as follows:
name = input("Name: ")
course = input("Course: ")
month = input("Month: ")
day = input("Day: ")
year = input("Year: ")
ddate = (month+"/"+day+"/"+year).replace(" ", "")
print("My name is ",name)
print("I have taken ",course)
print("Today's date is ",ddate)
Explanation:
This line prompts user for name
name = input("Name: ")
This line prompts user for course classes taken
course = input("Course: ")
This line prompts user for month
month = input("Month: ")
This line prompts user for day
day = input("Day: ")
This line prompts user for year
year = input("Year: ")
This line calculates the date and remove all blank spaces
ddate = (month+"/"+day+"/"+year).replace(" ", "")
The next three lines print the user inputs
print("My name is ",name)
print("I have taken ",course)
print("Today's date is ",ddate)