python共16篇 第2页
Python - 打包为exe-小纸条

Python – 打包为exe

【打包的完整方法】 【步骤01】 【在命令行中用pip工具安装Pyinstaller模块】 pip install Pyinstaller 【步骤02】 【切换命令行的路径到你要打包的Python源文件的文件夹路径下】 【下面是我要...
Blank的头像-小纸条Blank3年前
python - if-小纸条

python – if

注意事项if中的执行语句都需要缩进4个空格单个判断 a = 100 b = 20 if a > b: print("a比b大") 双个判断 a = 100 b = 20 if a > b: print("a比b大") else: print(&qu...
Blank的头像-小纸条Blank3年前
python - 数据容器-小纸条

python – 数据容器

五种数据容器1.list(列表)2.tuple(元组)3.str(字符串)4.set(集合)5.dict(字典)一.list(列表)定义空列表可以使用[]列表中的元素的是有上限的,只是比较大基本上都可以满足日常使用,并...
Blank的头像-小纸条Blank3年前
Python - 爬取酷狗音乐-小纸条

Python – 爬取酷狗音乐

演示视频 {dplayer src='http://blog.uurr.cn/video/python_kugou.MP4'/} 示例代码 import requests import json from playsound import playsound print('欢迎来到点歌台') xh=True while(xh):...
Blank的头像-小纸条Blank3年前
0120 10
python - 异常捕获-小纸条

python – 异常捕获

直接上示例:大概的意思就是当try下方的代码出现异常的时候就自动执行except下方的代码 # 1.捕获所有异常 try: d = open("D:data.txt","r",encoding="UTF-8") e...
Blank的头像-小纸条Blank3年前