About beginner python programming: - Make a function in Python called formato_data, which receives an 8-position string, referring to a date, and returns the possible formats in which the given date can be interpreted. You can assume that the input string contains two slashes (’/’) at positions 2 and 5, and that the rest of the characters are in the range between ’0’ and ’9’. Each format is specified as a string and there are three types of formacts valides: ’dd/mm/yy’, ’yy/mm/dd’ and ’mm/dd/yy’. As a date can, in some cases, be interpreted as belonging to more than one valid format, you must return a tuple containing all formats are valid for the date of entry. If no format matches the input data, you must return an empty tuple. For simplicity, you can consider that every month they have 31 days and that the year, month and day are always specified by two digits. See below some examples of using this function in the shell:
About beginner python programming:
-
Make a function in Python called formato_data, which receives an 8-position string, referring to a date, and returns the possible formats in which the given date can be interpreted. You can assume that the input string contains two slashes (’/’) at positions 2 and 5, and that the rest of the characters are in the range between ’0’ and ’9’. Each format is specified as a string and there are three types of formacts valides: ’dd/mm/yy’, ’yy/mm/dd’ and ’mm/dd/yy’. As a date can, in some cases, be interpreted as belonging to more than one valid format, you must return a tuple containing all formats are valid for the date of entry. If no format matches the input data, you must return an empty tuple. For simplicity, you can consider that every month they have 31 days and that the year, month and day are always specified by two digits. See below some examples of using this function in the shell:


Step by step
Solved in 3 steps with 1 images









