美文网首页
python----with

python----with

作者: 草中人 | 来源:发表于2019-08-07 06:00 被阅读0次

    python的with ---as 的用法 

    with EXPRESSION [ as VARIABLE] :

          WITH-BLOCK

    这个语法是用例代替传统的try .... finally语法的

    file = open("/tmp/foo.txt")

    try:

             data = file.read()

    finally:

               file.close()

    使用with...as...的方式替换

    with open("/tmp/foo.txt") as file:

    data = file.read()

    相关文章

      网友评论

          本文标题:python----with

          本文链接:https://www.haomeiwen.com/subject/bvsmgttx.html