python file

Posted yaoweilei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python file相关的知识,希望对你有一定的参考价值。

1.file read

    memory = 1024
    try:
        with open(NOVA_CONF, r) as f:
            s = json.load(f)
            memory = s.get(xxxx, 1024)
    except Exception as err:
        log.error("File Error:" + str(err))

 

以上是关于python file的主要内容,如果未能解决你的问题,请参考以下文章