User Jerry Hill - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T21:29:06Zhttp://stackoverflow.com/feeds/user/12773http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python/176044#1760440Answer by Jerry Hill for How do I convert a file's format from Unicode to ASCII using Python?Jerry Hill2008-10-06T20:24:46Z2008-10-06T20:24:46Z<p>It's important to note that there is no 'Unicode' file format. Unicode can be encoded to bytes in several different ways. Most commonly UTF-8 or UTF-16. You'll need to know which one your 3rd-party tool is outputting. Once you know that, converting between different encodings is pretty easy:</p>
<pre><code>in_file = open("myfile.txt", "rb")
out_file = open("mynewfile.txt", "wb")
in_byte_string = in_file.read()
unicode_string = bytestring.decode('UTF-16')
out_byte_string = unicode_string.encode('ASCII')
out_file.write(out_byte_string)
out_file.close()
</code></pre>
<p>As noted in the other replies, you're probably going to want to supply an error handler to the encode method. Using 'replace' as the error handler is simple, but will mangle your text if it contains characters that cannot be represented in ASCII.</p>
http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/75427#754276Answer by Jerry Hill for Random in python 2.5 not working?Jerry Hill2008-09-16T18:26:02Z2008-09-16T19:12:19Z<p>You probably have a file named random.py or random.pyc in your working directory. That's shadowing the built-in random module. You need to rename random.py to something like my_random.py and/or remove the random.pyc file.</p>
<p>To tell for sure what's going on, do this:</p>
<pre><code>>>> import random
>>> print random.__file__
</code></pre>
<p>That will show you exactly which file is being imported.</p>