标签: python json character readline
我有一个文件,每行有几个JSON对象。而且,我需要知道每个对象的长度,我的意思是每个字符的数量。但是当我运行下面的代码时,它提供的字符数少于预期。
jsonFile = open(File, 'r') line = jsonFile.readline() len(line)
它将“/ n”之类的元素视为一个字符,但我希望它说有两个。你有什么想法吗?
答案 0 :(得分:0)
print os.path.getsize('myfile.json')
http://devdocs.io/python/library/os.path#os.path.getsize