140,342 reputation
8147266
bio website
location
age
visits member for 3 years, 7 months
seen 1 min ago
stats profile views 4,649

unutbu leaps minitower in a single bound.


May
15
revised How to load .ttf file in matplotlib using mpl.rcParams?
added 449 characters in body
May
15
answered How to load .ttf file in matplotlib using mpl.rcParams?
May
15
revised BeautifulSoup and div value from site using Firefox
edited title
May
15
revised non-negative matrix factorization failing to converge
deleted 8 characters in body
May
15
revised non-negative matrix factorization failing to converge
added 13 characters in body
May
15
revised non-negative matrix factorization failing to converge
added 111 characters in body
May
15
answered non-negative matrix factorization failing to converge
May
15
answered Surpress raise errors during unittesting?
May
15
comment Converting ascii characters in text file to Unicode
You might find it useful to read Pragmatic Unicode -- How do I stop the pain. It will help you reason about when to decode and when to encode, and how to debug these kind of problems.
May
15
comment Converting ascii characters in text file to Unicode
By the way, the error message mentions u'\xa9' which is the copyright symbol. So you have successfully decoded the text file at that point. That's good!
May
15
comment Converting ascii characters in text file to Unicode
@JoeKelley: The error message says you're encoding with the charmap codec, not decoding with cp1252. Are you sure this error is occurring on the same line as where you are using f.read().decode('cp1252')?
May
15
answered Using Anaconda and Spyder, I keep getting SyntaxError: invalid syntax
May
15
revised Using Anaconda and Spyder, I keep getting SyntaxError: invalid syntax
added 20 characters in body
May
15
comment Converting ascii characters in text file to Unicode
'\x92'.decode('cp1252') is an RIGHT SINGLE QUOTATION MARK. There is no encoding for which '\x92' is a copyright symbol. But perhaps there are other symbols besides copyright symbols which are non-ascii. So try decoding with cp1252.
May
15
answered assign all items of an array except those of the given indices
May
15
revised Import vs open for input file
deleted 642 characters in body
May
15
answered Generationg a list from user-input dynamically
May
15
revised Python shlex - Split
added 44 characters in body
May
15
answered How to convert Python Multiple list to list
May
15
answered using entry from a class in another classes function