Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a function is_timestamp(tstamp) that uses a regex to test if a given string evaluates to a correct 24-hour timestamp that adopts the HH:MM:SS format.
Write a function is_timestamp(tstamp) that uses a regex to test if a given string evaluates to a correct 24-hour timestamp that adopts the HH:MM:SS format.
Examples:
is_timestamp('00:00:00') -> True is_timestamp('01:59:47') -> True is_timestamp('23:59:01') -> True is_timestamp('11:32:05') -> True is_timestamp('24:00:00') -> False is_timestamp('09:62:01') -> False is_timestamp('9:05:01') -> False
python jupyter
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started