Question: Computer scientists and mathematicians often use numbering systems other than (decimal system). Write a program using Python language that allows a user to enter a

Computer scientists and mathematicians often use numbering systems other than (decimal system). Write a program using Python language that allows a user to enter a positive base 10 number and a base to convert to either binary (base 2), octal (base 8), or hexadecimal (base 16). The program then prints out the given input number and the digits of the number in the new base. Use a recursive function baseConversion (number, base) to print the digits. base 10 [Hint: baseConversion(235, 16) should print 235 EB]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
