什么是头注释
写在python脚本第一样的用#号开头表示的信息就是头注释
头注释的作用
头注释更多是被系统或解释器所调用
1.告诉系统python解释器在哪
2.脚本编码格式是啥
头部注释的结构
常见头注释
国内常见
# coding:utf-8
定义coding告诉系统脚本编...
yekong
4年前 (2020-12-23)
喜欢
功能
接受一个标准输入数据返回为string类型
在命令行输入一行信息,将此信息返回成字符串
用法
res = input('请输入年龄:')
print('您的年龄是' + res)
执行结果
请输入年龄:123
您的年龄是123
...
yekong
4年前 (2020-12-23)
喜欢
代码执行入口主函数:main
__name__ == '__main__'
入口函数
if __name__ == "__main__":
# 调用函数
init_db('movietest.db')
...
yekong
4年前 (2020-12-23)
喜欢
连接数据库
import sqlite3
conn = sqlite3.connect('test.db')
创建表
c = conn.cursor() # 获取游标
sql = '''
create table co...
yekong
4年前 (2020-12-19)
喜欢
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)
喜欢