2021年12月27日

摘要: file_path = 'E:\python\code\learning_python.txt'with open(file_path) as filename: fileStr=filename.read() print(fileStr) filename.seek(0) >让文件指针回到开始 f 阅读全文
posted @ 2021-12-27 18:23 Rz_dddd 阅读(101) 评论(0) 推荐(0) 编辑
 
摘要: in 在python中的使用很常见,用处也很多,很强大,这里记录下几种常见的用法。 1、在 for 循环中,获取列表或者元组的每一项: >item是变量 for item in list:2、判断左边的元素是否包含于列表,类似java中的List的contains方法 >in 前面是确定的值,不是变 阅读全文
posted @ 2021-12-27 11:24 Rz_dddd 阅读(332) 评论(0) 推荐(0) 编辑
 
摘要: python中去掉空格的方法有以下几种 1.使用lstrip()函数去掉左边空格string = " * it is blank space test * "print (string.lstrip()) 输出结果为:* it is blank space test * 2.使用rstrip()函数 阅读全文
posted @ 2021-12-27 11:17 Rz_dddd 阅读(862) 评论(0) 推荐(0) 编辑