python中的标准库函数学习整理

Posted merryconei123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的标准库函数学习整理相关的知识,希望对你有一定的参考价值。

 1 """
 2     方法 rstrip() 删除(剥除)字符串末尾的空白
 3     方法 lstrip() 删除(剥除)字符串开头的空白
 4     方法 strip() 删除(剥除)字符串开头和末尾的空白
 5     方法 replace()将字符串中的特定单词都替换为另一个单词
 6 """
 7 
 8 message =    aaabbbccc   
 9 message_1 = ddd
10 message = message.replace(a,e)
11 
12 
13 print(message+message_1)
14 print(message.rstrip()+message_1)
15 print(message.lstrip()+message_1)
16 print(message.strip()+message_1)

 1 """
 2     方法open(文件路径)和close(文件路径)用来打开和关闭文件
 3     关键字with在不再需要访问文件后将其关闭
 4     使用关键字with时,open()返回的文件对象只在with代码块内可用
 5     方法read()读取这文件的全部内容
 6     方法readlines()从文件中读取每一行,并将其存储在一个列表中
 7 """
 8 with open(10pi_digits.txt) as file_object:
 9     contents = file_object.read()
10     print(contents) 
11 
12 with open(10pi_digits.txt) as file_object:
13     lines = file_object.readlines()
14     print(lines)
15     
16 with open(10pi_digits.txt) as file_object:
17     contents = file_object.read()
18     lines = file_object.readlines()
19     print(contents) 
20     print(lines)

 

 

  

以上是关于python中的标准库函数学习整理的主要内容,如果未能解决你的问题,请参考以下文章

吐血整理!140种Python标准库第三方库和外部工具都有了

日月累积的整理!140种Python标准库第三方库和外部工具都有了

python 部分标准库笔记整理

python 零基础学习大纲 - 整理

把Python的200个标准库分类整理了下,供参考

吐血整理:C++编程语言资源汇总