Read a file character by character/UTF8: Difference between revisions

Content deleted Content added
m →‎{{header|Python}}: Fixed language in template
Line 351:
=={{header|Python}}==
{{works with|Python|2.7}}
{{incorrect|PYthonPython|It reads the file byte by byte not character by character.}}
<lang python>
with open(filename,"rb") as f: