码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 跟艾文学编程《Python基础》(5)Python的文件操作


    作者: 艾文,计算机硕士学位,企业内训讲师和金牌面试官,公司资深算法专家,现就职BAT一线大厂。
    邮箱: 1121025745@qq.com
    博客:https://wenjie.blog.csdn.net/
    内容:跟艾文学编程《零基础入门学Python》

    学习目标

    • 文本文件的读写
    • json 数据读写
    • csv 格式数据读取
    • 系统库sys&os 介绍

    文本文件读写

    open 函数语法:

    open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)

    1. Character Meaning
    2. --------- ---------------------------------------------------------------
    3. 'r' open for reading (default)
    4. 'w' open for writing, truncating the file first
    5. 'x' create a new file and open it for writing
    6. 'a' open for writing, appending to the end of the file if it exists
    7. 'b' binary mode
    8. 't' text mode (default)
    9. '+' open a disk file for updating (reading and writing)
    10. 'U' universal newline mode (deprecated)
    11. ========= ===============================================================

    写文件

    write 语法:

    1. write(text, /) method of _io.TextIOWrapper instance
    2. Write string to stream.
    3. Returns the number of characters written (which is always equal to
    4. the length of the string).

    读文件

    read 语法:

    1. Help on built-in function read:
    2. read(size=-1, /) method of _io.TextIOWrapper instance
    3. Read at most n characters from stream.
    4. Read from underlying buffer until we have n characters or we hit EOF.
    5. If n is negative or omitted, read until EOF.

    json 数据读写

    JSON(JavaScript Object Notation) 是一种轻量级数据交互格式。

    提供两种数据格式函数: json.dumps() 和 json.loads

    • json.dump() 函数是将一个Python数据类型列表进行json格式的编码
    • json.load() 函数 将加载一个json文件格式转换字典

    json 格式写文件

    json 格式读操作

    csv 文件读写

    后续可以通过pandas 来完成

    csv 文件写操作

    csv 读文件

    系统库 sys&os 介绍

    os

    sys

    让我们一起加油!!!

    Python数据分析零基础入门实战--机器学习视频教程-人工智能-CSDN程序员研修院

  • 相关阅读:
    it监控系统可以电脑吗?有什么效果
    python:搭建 flask_restful 服务
    武汉星起航:企业出海扩大影响力,良好的品牌建设是关键
    2023探寻室内设计的新趋势与即将流逝的旧潮流
    Centos7安装Clickhouse单节点部署
    如何防止企业代码被抄袭?源代码加密软件来救援!
    Java分库分表配置
    快速排序
    Spring 从入门到精通 (十一) 静态代理登场
    docker更改存储目录原因及方案
  • 原文地址:https://blog.csdn.net/shenfuli/article/details/127943467
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号