Question: PYTHON 3.6 Prob. 4 Develop a function that reverses digits of any given integer. 1 def reverse digits (num): 'The input num should be an
PYTHON 3.6

Prob. 4 Develop a function that reverses digits of any given integer. 1 def reverse digits (num): 'The input num should be an integer, if not, raise an exception and return with some instructive message to input int type data When coded correctly 4 reverse digits (12345) and reverse digits (+12345) should return '54321', and reverse-digits(-12345) should return-54321' 6 That is, besides reversion of digits, the signs need some addition attention To avoid complication caused by int() removing leading 0's, such as int (0001-1, you should return the reversed digits as a string 9 10
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
