• 创建文件


    创建和读出文件p2.py和p3.py

    #!/usr/bin/python
    import os
    ls=os.linesep
    fname = raw_input('Enter filename: ')
    print

    while True:
            if os.path.exists(fname):
                    print "Error '%s' already exists" % fname
            else:
                    break

    all=[]
    print "\nEnter lines ('.') by itself to quit).\n"

    while True:
            entry=raw_input('>')
            if entry=='.':
                    break
            else:
                    all.append(entry)

    fobj=open(fname,'w')
    执行python p2.py


    读出文件
    #!/usr/bin/env Python
    'readTextFile.py -- read and display text file'
    # get filename
    fname = raw_input('Enter filename: ')
    print
    # attempt to open file for reading
    try:
    fobj = open(fname, 'r')
    except IOError, e:
    print "*** file open error:", e
    else:
    # display contents to the screen
    for eachLine in fobj:
    print eachLine,
    fobj.close()

    执行python p3.py                                                             

  • 相关阅读:
    网络嗅探器
    struct udphdr
    struct tcphdr
    struct iphdr
    socket函数
    SQL SERVER-解析Extendevent文件数据
    SQL SERVER-日期按时区转换
    SQL SERVER-CROSS APPLY
    WinServer-文件共享端口
    SQL SERVER-修改实例的排序规则
  • 原文地址:https://www.cnblogs.com/djcsch2001/p/2025922.html
Copyright © 2020-2023  润新知