`

python -- file operate

阅读更多

#test for use file

#write file
str = '''
    hello, andylin!
    I love my baby so much!
    But who is my baby?

    for test empty line
    
''';

strFile = "myfile.txt";
f = file(strFile, "w")#open for writing

f.write(str);
f.close();

#read file
f = file(strFile);

while 1:
    strLine = f.readline();
    if (0 == len(strLine)) :
        break;
    
    print strLine;

f.close();
 
分享到:
评论

相关推荐

    operate-file.rar_File Operate

    "operate-file.rar_File Operate"这个主题涵盖了文件操作的基本概念和常见功能,包括打开、复制、移动和修改文件。以下是对这些知识点的详细阐述: 1. **打开文件**:在计算机编程中,打开文件通常涉及使用特定的...

    file-Operate.zip_FileOperate

    本压缩包"file-Operate.zip_FileOperate"提供了一个关于文件流操作的实例,帮助我们更好地理解和应用这个概念。 文件流在C++、Java、Python等许多编程语言中都有广泛的应用。它基于输入/输出流(I/O Stream)的概念...

    file_operate.rar_文件_文件操作

    本资源"file_operate.rar"显然是一个关于文件操作的集合,包含了源代码示例和可能的文档资料,帮助开发者深入理解并实践文件操作的相关知识。 首先,我们来看"file.cpp"这个文件,它很可能是一个C++语言编写的源...

    基于Python的接口自动化框架+源代码+文档说明

    - **File - Settings - Tools - Python Integrated Tools - Default Test Runner**选择**py.test** - 执行**runCase.py**,观察结果是否成功,excel中有一条访问百度的用例,可以看看执行结果百度是否访问成功 - 查看...

    scipylectures

    **NumPy:** A fundamental package for scientific computing with Python, providing support for large, multi-dimensional arrays and matrices, along with a collection of mathematical functions to operate ...

    Python使用os模块和fileinput模块来操作文件目录

    os模块 在python编程中,我们会经常使用到文件和目录,这些操作...['deco.py', '6.py', 'inputfile.py', 'uniFile.py', 'oddnogen.py', 'ospathex.py', 'operate.py', 'bianliang.py', 'typecheck1.py'] 3.创建目录 >>>

    python实现自动登录人人网并采集信息的方法

    ### Python 实现自动登录人人网并采集信息的方法 在本篇文章中,我们将详细介绍如何使用Python实现自动登录人人网的功能,并在此基础上完成信息的采集。该技术涵盖了Python模拟登录以及正则表达式的应用。 #### 一...

    Python根据指定文件生成XML的方法

    MyLogger().error(f"OperateXML: read file error:\n{ex}") return {} else: # data.sort(key=lambda x: x.strip().split(",")[0]) return data ``` - **解析**:通过`defaultdict(list)`创建一个字典,键是...

    一款基于JScript的ASP开源MVC框架

    Support Muti-Databases-Operate. > > 表单验证支持,HTTP请求数据可直接用来更新数据库。FormValidatee is supported, and Http Post data can be used for insert or update table record(s). > > 提供...

    matrix-utils:随机矩阵相关的脚本

    矩阵实用程序 随机矩阵实用程序。 megolm_backup.py 该脚本可用于从Shell修改...Operate on megolm session backups. positional arguments: file Input text file (- for stdin). optional arguments: -h,

    Google C++ Style Guide(Google C++编程规范)高清PDF

    For example, if your header file uses the File class in ways that do not require access to the declaration of the File class, your header file can just forward declare class File; instead of having ...

    woapp:网络模拟安卓操作系统,php开发,内置文件管理,电话,短信,截图,用在树莓派上可做智能家居,视频监控,机顶盒等……

    WOAPP php+html,网页端可视化操作系统 ##已完成应用 桌面 文件管理 拨打电话 发送短信 拍照 机器人 SSH终端 MySQL管理工具 应用生成 各编程学习器 ...| my_operate.php 数据库操作类 ...| wo_dir_file.php 文件

Global site tag (gtag.js) - Google Analytics