I am trying to add zeroes to a date if the day/month is less than 10.
For example, if 2/12/200 is entered, convert it to 02/12/2000.
userDate = input("What is the date? Please enter in MM/DD/YYYY format")
newDate = ''
newDate = userDate[3:5]+ "."+userDate[0:2]+"."+ userDate[6:]
print (newDate)