分类:python

python开发

python的头部注释

python的头部注释
什么是头注释 写在python脚本第一样的用#号开头表示的信息就是头注释 头注释的作用 头注释更多是被系统或解释器所调用 1.告诉系统python解释器在哪 2.脚本编码格式是啥 头部注释的结构 常见头注释 国内常见 # coding:utf-8 定义coding告诉系统脚本编...

yekong 4年前 (2020-12-23) 喜欢

python的内置函数input

python的内置函数input
功能 接受一个标准输入数据返回为string类型 在命令行输入一行信息,将此信息返回成字符串 用法 res = input('请输入年龄:') print('您的年龄是' + res) 执行结果 请输入年龄:123 您的年龄是123 ...

yekong 4年前 (2020-12-23) 喜欢

BeautifulSoup的使用

BeautifulSoup的使用
获取第一个标签的内容 from bs4 import BeautifulSoup file = open('baidu.html', 'rb') html = file.read() bs = BeautifulSoup(html, 'h...

yekong 4年前 (2020-10-18) 喜欢

python urllib的测试

python urllib的测试
使用urllib读取网页 get res = urllib.request.urlopen('https://www.wanjunshijie.com') print(res.read().decode('utf-8')) 使用urllib p...

yekong 4年前 (2020-10-12) 喜欢

python异常处理

python异常处理
错误 文件未找到报错 print('test') f = open('text.txt', 'r') print('text2') try捕获异常 不报错 try: print('test&#...

yekong 4年前 (2020-10-10) 喜欢

python文件操作

python文件操作
打开文件 f = open('text.txt', 'w') #打开文件 写模式,文件不存在就新建 f.close() #关闭文件 写入操作 f = open('text.txt', 'w') #打开文件 写...

yekong 4年前 (2020-10-10) 喜欢

python 函数

python 函数
定义函数 def printinfo(e): print('=-----------=') print(e) printinfo('ceshi') 带返回值的函数 def add2num(a, b): c = a + ...

yekong 4年前 (2020-10-09) 喜欢