Skip to content Skip to sidebar Skip to footer

Print Comments Of Files In A Zip Ordered In Lines, Python

this is the thing. I have to make a program which will begin by reading a file in a zip, in that file it will find the name of the .txt file to read next, and so it goes on, until

Solution 1:

the b'...' before the character means that it is a byte string. You need to decode it to produce a string:

>>> b"abcde".decode("utf-8") 
'abcde'

Post a Comment for "Print Comments Of Files In A Zip Ordered In Lines, Python"