User Jerry Hill - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:29:06Z http://stackoverflow.com/feeds/user/12773 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python/176044#176044 0 Answer by Jerry Hill for How do I convert a file's format from Unicode to ASCII using Python? Jerry Hill 2008-10-06T20:24:46Z 2008-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#75427 6 Answer by Jerry Hill for Random in python 2.5 not working? Jerry Hill 2008-09-16T18:26:02Z 2008-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>&gt;&gt;&gt; import random &gt;&gt;&gt; print random.__file__ </code></pre> <p>That will show you exactly which file is being imported.</p>