Wondering what the real difference is when writing files from Python. From what I can see if I use w
or wb
I am getting the same result with text.
I thought that saving as a binary file would show only binary values in a hex editor, but it also shows text and then ASCII version of that text.
Can both be used interchangably when saving text? (Windows User)