In convert.py, define a function decimalToRep that returns the representation of an integer in a given base. The two arguments should be the integer and the base. • The function should return a string. • It should use a lookup table that associates integers with digits.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.2: Returning A Single Value
Problem 13E
icon
Related questions
Question

Must be written in Python.

1 # Put your code here
In convert.py, define a function decimalToRep that
3 # A main for testing your program
4 def main():
returns the representation of an integer in a given base.
II I|"Tests the function."""
print(decimalTORep(10, 10))
print(decimalTORep(10, 8))
print(decimalToRep(10, 2))
print(decimalToRep(10, 16))
• The two arguments should be the integer and the base.
7
• The function should return a string.
8.
9.
• It should use a lookup table that associates integers
10
with digits.
11 # The entry point for program execution
12 if --name_-
"-_main__":
A main function that tests the conversion function with
13
main()
14
numbers in several bases has been provided.
An example of main and correct output is shown below:
def main():
I""Tests the function."""
print(decimalToRep(10, 10))
print(decimalTORep(10, 8))
print(decimalTORep(10, 2))
print(decimalTORep(10, 16))
10
12
1010
A
Transcribed Image Text:1 # Put your code here In convert.py, define a function decimalToRep that 3 # A main for testing your program 4 def main(): returns the representation of an integer in a given base. II I|"Tests the function.""" print(decimalTORep(10, 10)) print(decimalTORep(10, 8)) print(decimalToRep(10, 2)) print(decimalToRep(10, 16)) • The two arguments should be the integer and the base. 7 • The function should return a string. 8. 9. • It should use a lookup table that associates integers 10 with digits. 11 # The entry point for program execution 12 if --name_- "-_main__": A main function that tests the conversion function with 13 main() 14 numbers in several bases has been provided. An example of main and correct output is shown below: def main(): I""Tests the function.""" print(decimalToRep(10, 10)) print(decimalTORep(10, 8)) print(decimalTORep(10, 2)) print(decimalTORep(10, 16)) 10 12 1010 A
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning