<div dir="ltr">Hi everyone,<div><br></div><div>I have some code where I import a file to use a module. That module that I import takes text and a multiplier, checks for any numbers in that text and will then multiply those numbers by the given multiplier. The imported module is below. I am getting the text from a file that I have which starts out as:</div>

<div><br></div><div>.5 lb. butter</div><div>1.75 Cups Graham Cracker Crumbs</div><div>2.0 Cups Powder Sugar</div><div>1.0 Cups Peanut Butter</div><div>2.0 Cups Semi-sweet Chocolate Chips</div><div><br></div><div>It seems that the .isdigit() function that I use doesn&#39;t recognize the .5 as a number and therefore doesn&#39;t multiply it. How can I get my code to recognize numbers such as .5, 1.75 as numbers?</div>

<div><br></div><div>Imported module:</div><div><br></div><div><div>def MultiplyText(text, multiplier):</div><div>    &#39;&#39;&#39;Recieve a S &amp; int. For digits in S, multiply by multiplier and return updated S.&#39;&#39;&#39;</div>

<div>    return &#39; &#39;.join(str(float(num) * multiplier) if num.isdigit() else num for num in text)</div><div><br></div><div>Module doing the importing/opening/reading/creating a new file</div><div><br></div><div><div>

import Homework5_1 as multiply</div><div><br></div><div>def DoubleDigits(file_name):</div><div>    &#39;&#39;&#39;Open file/read file/write new file that doubles all int&#39;s in the</div><div>    read file&#39;&#39;&#39;</div>

<div>    try:</div><div>        read_file = open(file_name)</div><div>    except IOError:</div><div>        return &#39;No such file.&#39;</div><div>    new_file_name = file_name + &#39;2&#39;</div><div>    try:</div><div>

        write_file = open(new_file_name, &#39;w&#39;)</div><div>    except IOError:</div><div>        read_file.close()</div><div>        return &#39;No such file to write to.&#39;</div><div>    for line in read_file:</div>

<div>        new_line = line.split()</div><div>        new_line = &#39;&#39;.join(multiply.MultiplyText(new_line, 2))</div><div>        write_file.write(new_line + &#39;\n&#39;)</div><div>    read_file.close()</div><div>
    write_file.close()</div>
<div><br></div><div>def main():</div><div>    DoubleDigits(raw_input(&#39;What file do you want to open? &#39;))</div><div><br></div><div><br></div><div>if &#39;__name__&#39; == &#39;__main__&#39;:</div><div>    print main()</div>

</div><div><br></div><div>Output that is written to my file:</div><div><br></div><div><div>Peanut Butter Bars</div><div><br></div><div>Ingredients</div><div><br></div><div>.5 lb. butter</div><div>1.75 Cups Graham Cracker Crumbs</div>

<div>4.0 Cups Powder Sugar</div><div>2.0 Cups Peanut Butter</div><div>4.0 Cups Semi-sweet Chocolate Chips</div><div><br></div><div>Melt butter. Add graham cracker crumbs,</div><div>peanut butter and sugar. Mix well and</div>

<div>pat into sheet pan. Cover with melted</div><div>chocolate. Refrigerate until semi-firm,</div><div>then cut into squares.</div></div><div><br></div>-- <br><div dir="ltr"><div>Michael J. Lewis</div></div><br>
</div></div>