码农知识堂 - 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程序员研修院

  • 相关阅读:
    电商网站选择云服务器要考虑什么?
    Contrastive Search Decoding——一种对比搜索解码文本生成算法
    PCL点云处理之Pcd文件读取、法线与曲率计算、多线程加速、属性字段合并 (二百零八)
    消除两个inline-block元素之间的间隔
    【示波器专题】示波器的频响方式
    Oracle基础之单表查询
    IVIEW Table/Div 自适应高度
    javascript跨域传输数据的设置和兼容浏览函数代码
    java计算机毕业设计ssm+vue工商学院办公用品管理信息系统
    【ODOO】Docker Compose 编排ODOO应用
  • 原文地址:https://blog.csdn.net/shenfuli/article/details/127943467
  • 最新文章
  • 沪漂五周年了:我越来越迷茫了
    Agentic Skill Routing 实战:别再把所有 Skill 塞进 AI Agent 上下文
    MySQL-Seconds_behind_master的精度误差
    [MAF预定义ChatClient中间件-03]CachingChatClient——利用缓存省钱省时间
    AI的至暗历史:从万众期待到被政府撤资,AI的两次死亡徘徊
    Agent OS :五种驯服不确定性的范式
    PortSwigger SQL注入LAB11
    数据库即时编译JIT
    [Begin]AI Learn Data Day 0
    深度学习进阶(二十七)现代 LLM 的核心架构设计其二:SwiGLU
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号