xlwt库
创建表格
import xlwt
workbook = xlwt.Workbook(encoding='utf-8') # 创建workbook对象
worksheet = workbook.add_sheet('sheet1')...
yekong
4年前 (2020-11-18)
喜欢
获取第一个标签的内容
from bs4 import BeautifulSoup
file = open('baidu.html', 'rb')
html = file.read()
bs = BeautifulSoup(html, 'h...
yekong
4年前 (2020-10-18)
喜欢
使用urllib读取网页 get
res = urllib.request.urlopen('https://www.wanjunshijie.com')
print(res.read().decode('utf-8'))
使用urllib p...
yekong
4年前 (2020-10-12)
喜欢
错误
文件未找到报错
print('test')
f = open('text.txt', 'r')
print('text2')
try捕获异常
不报错
try:
print('test...
yekong
4年前 (2020-10-10)
喜欢
打开文件
f = open('text.txt', 'w') #打开文件 写模式,文件不存在就新建
f.close() #关闭文件
写入操作
f = open('text.txt', 'w') #打开文件 写...
yekong
4年前 (2020-10-10)
喜欢
定义函数
def printinfo(e):
print('=-----------=')
print(e)
printinfo('ceshi')
带返回值的函数
def add2num(a, b):
c = a + ...
yekong
4年前 (2020-10-09)
喜欢
字典的定义
info = {'name': '吴彦祖', 'age': 18}
字典的访问
info = {'name': '吴彦祖', 'age': 18}
print(inf...
yekong
4年前 (2020-10-09)
喜欢
tuple 与 list 类似,tuple不能修改,tuple写在小括号内,元素间用逗号分隔。
元组的元素不可变,但是可以包含可变对象入list.
定义一个只有1个元素的tuple,必须加逗号。
tup2 = (50,)
tupl = ('abc', ...
yekong
4年前 (2020-10-08)
喜欢
列表
列表索引值以0为开始值,-1位从末尾开始值
列表可以完成大多数集合类的数据结构实现
列表中元素的类型可以不同,支持数字 字符串甚至包括列表
列表是写在[]之间用逗号分隔的元素列表
列表可以使用+操作符进行拼接,使用*重复
列表可以存储混合类型
namelist = [] ...
yekong
4年前 (2020-10-07)
喜欢
python 字符串使用单引号双引号三引号括起来。
word = '字符串'
sentence = "一个句子"
paragraph = """
则是段落
这是多行
"""
prin...
yekong
4年前 (2020-10-05)
喜欢