Question: PYTHON 14. (15 pts.) A wobbly number is one in which the digits alternate between being higher and lower than the preceding one. Here are

PYTHON
14. (15 pts.) A "wobbly" number is one in which the digits alternate between being higher and lower than the preceding one. Here are some wobbly numbers: 19284756242, 90909, 0909. Your objective: Write a function called wobbly (number), where number is an integer. A template for the function is provided below. If the number is wobbly, the function should return True. Otherwise, it returns False. Consider the following examples. wobbly(19284756242) returns True wobbly (89012345) returns False. vobbly(100) returns False. def wobbly (num) D N Returns whether num is a wobbly number. Args: num int): a positive integer Returns True if num is a wobbly number. Otherwise, returns False 9
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
