of 'rt'). Modes 'w+' and 'w+b' open and truncate the file. Modes 'r+' and 'r+b' open the file with no truncation.
Документация к open().
def getFile(path):
"""
Returns the content of a file by the given path
"""
f = open(path, "r")
cont = f.read()
f.close()
return cont
Почему функция возвращает bytes вместо строки и мне приходится вызывать .encode() ?
эм… если ты вызываешь .encode(), то там не может быть bytes по определению.
Обсуждают сегодня