- 博客(6)
- 收藏
- 关注
原创 python实训day05
爬虫数据库 sqlite数据库 import sqlite3 contect = sqlite3.connect('./testsqlite.db') cursor = contect.cursor() cursor.execute(""" create table if not exists student ( id integer primary key, name Text, age integer ); """) cursor.ex
2021-01-20 20:36:34 114 1
原创 pyth实训day04
json模式 import json xiaoming_json_str = """ { "name" : "小明", "age" : 13, "parent" : [ { "name" : "xiaomingbaba" }, { "name" : "xiaomingmama" }
2021-01-19 23:57:15 144
原创 python实训day03
os库 os库: print(os.listdir()) print(os.getcwd()) #print(os.chdir('../day02')) #print(os.listdir()) print(os.path.exists('./aaa')) if not os.path.exists('./bbb'): os.mkdir('./bbb') print(os.path.dirname(__file__)) file_path = os.path.join(os.path.dirname
2021-01-18 23:14:54 121
原创 python实训day02
html解析方法 正则表达式 import re text1='abcdefg' pattern1=re.compile(r'c') matcher1=re.search(pattern1,text1) print(matcher1[0]) text2=""" <html> aaa<h1>aa bbb </h1> aaa </html> """ pattern2=re.compile(r'<h1>(.*?)</h1>',re.
2021-01-17 20:24:10 110
原创 python实训
python实训day01 本地文件读写 (1)读写纯文本文件 (2)读写非纯文本文件 (3)文本编码 (4)读写图片二进制 (5)Base64编码。 核心代码 1.读写纯文本文件:# 相路径同级./ 父级…/ 绝对路径 所有电脑路径 file = open(’./chinese_utf-8.txt’,mode=‘r’,encoding=‘utf-8’) content = file.read() print(content) file.close() #chinese_utf-8.txt为外部文件 2.
2021-01-16 10:17:50 179 2
原创 Python正则表达式
正则(Regular Expression)表达式,又称规则表达式。 正则表达式是一种用来匹配字符串的强有力的武器。它的设计思想是用一种描述性的语言来给字符串定义一个规则,凡是符合规则的字符串,我们就认为它“匹配”了,否则,该字符串就是不合法的。 在介绍python中正则表达式的使用之前,先介绍一下有关正则表达式的语法。 正则表达式 元字符介绍 “^” :^会匹配行或者字符串的起始位置,有时还会匹配整个文档的起始位置。 "":" :":会匹配行或字符串的结尾。 “\w”:匹配字母,数字,下划线。 “\b”
2020-10-20 11:37:31 292
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人