I\'m trying to write a code that converts a user-inputted integer into its Roman numeral equivalent. What I have so far is:
The point of the generate_
generate_
When you use the def keyword, you just define a function, but you don't run it.
what you're looking for is something more like this:
def generate_all_numerals(n): ... def to_roman(n): ... print "This program ..." n = raw_input("Enter...") print to_roman(n)
welcome to python :)