怎样在导入本地磁盘,可以json.load()解析我的电脑上的文件呢
import json
class Students(object):
def read(self):
return r'["Tim", "Bob", "Alice"]'
s = Students()
print json.load(s)
#我想要p=open'C:\\ah.py'怎样做
import json
class Students(object):
def read(self):
return r'["Tim", "Bob", "Alice"]'
s = Students()
print json.load(s)
#我想要p=open'C:\\ah.py'怎样做
2018-07-24
>>>f = open('a.txt', 'r')
>>>f.read(5)
'hello'
read( )是读文件的方法,括号内填入要读取的字符数,这里填写的字符数是5,如果填写的是1那么输出的就应该是‘h’。
原地址:http://www.iplaypy.com/sys/open.html
希望对你有帮助。
举报