Question: Write a function kth_digit(n, k) that given a number n returns the k -th digit from right to left. Return 0 if k is larger
Write a function kth_digit(n, k) that given a number n returns the k-th digit from right to left. Return 0 if k is larger than the digits in n.
For example:
| Test | Result |
|---|---|
print(kth_digit(23456, 2)) | 5 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
