Assume the variable date has been set to a string value of the form mm/dd/yyyy, for example 09/08/2010. (Actual numbers would appear in the string.) Write a statement to assign to a variable named dayStr the characters in date that contain the day. Then set a variable day to the integer value corresponding to the two digits in dayStr.Use Python

Respuesta :

Answer:

The code is attached

Explanation:

  1. a date in the string format 'mm/dd/yyyy' is assigned to variable dateStr
  2. split() function with delimiter '/' is used to split month,day,and year in a list
  3. dateStr.split('/')[1] is used to assign the day of the list to the string variable dayStr
  4. int(dayStr) is used to convert string to integer value and assigned to the variable day.
Ver imagen dogacandu