Write a function to print other value with given base to int.
Topic: Write a function to print other value with given base to int.
Solution
def other_int(value, b): return int(value, b)
List all Python Programs
Solution
def other_int(value, b): return int(value, b)