def roman(integer_number): “”” Parameter Type: `int` Parameter…
Question Answered step-by-step def roman(integer_number): “”” Parameter Type: `int` Parameter… def roman(integer_number): “”” Parameter Type: `int` Parameter Value: Represents the number you want to convert to a roman numeral Give an integer, return a string representing the number in Roman Numerals. Return Type: A `str` object Return Value: A string in Roman Numerals that represents the integer passed in “””if __name__ == “__main__”: # Example print(“12 should be XII. Your result is {}”.format(roman(12))) ### # TODO: make loop that produces the same output as in the document # This part of the assignment is also graded. ### ### # HINT: There are many different approaches. # One approach is multiple prints with different endings. # Or making a string and printing when a certain criteria is met. # (And potentially printing outside the loop) # Many different approaches. # ### Computer Science Engineering & Technology Python Programming CSCI C200 Share QuestionEmailCopy link Comments (0)


