"John Fouhy" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On 12/03/07, Alan Gilfoy <[EMAIL PROTECTED]> wrote:
>
>> My question here boils down to, "Is there a way to remove certain
>> characters from a string?"
> In this case, it looks like you're after "string slicing". The
> t
On 12/03/07, Alan Gilfoy <[EMAIL PROTECTED]> wrote:
> My question here boils down to, "Is there a way to remove certain
> characters from a string?"
There are several ways, depending on what exactly you want to achieve.
In this case, it looks like you're after "string slicing". The
tutorial cov
#start of triple-letter processing block
if len(roman_input) > 2 and roman_input[0] + roman_input[1] +
roman_input[2] == "MMM":
digital_result += 3000
roman_input = #something to remove those "M"'s from the string
continue
--
My question here boils down to, "Is there a way to rem