And One More Thing…
We'll cover the following...
There was one more functional requirement for converting numbers to Roman numerals: dealing with non-integers.
Press + to interact
import roman3print (roman3.to_roman(0.5)) #①#''print (roman3.to_roman(1.0)) #②#'I'
① Oh, ...