python共16篇 第3页
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的头像-小纸条Blank2年前
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的头像-小纸条Blank2年前
python - while/for-小纸条

python – while/for

循环控制语句1.break,跳出循环2.continue,跳过本次循环while i = 0 while 1 >= 100: if i >= 10: print("while循环结束") result = False else: i += 1 print(f"while循环...
Blank的头像-小纸条Blank2年前
034 8
踩坑pymysql-小纸条

踩坑pymysql

前言记录 今天写了一个mysql数据库的用户新增模块,逻辑是根据用户 ID 查询用户数据,若不存在则创建新用户并返回用户数据,数据库是保持常连接状态,测试的时候发现无法读取最新数据,一直读取第一...
Blank的头像-小纸条Blank1年前
027 9
python  - 函数/方法-小纸条

python – 函数/方法

函数的定义def 函数名(传入变量):return 表示需要返回的内容,可写可不写在pycharm中输入三个'''回车即可快捷添加函数说明示例: # 1.单返回值示例 msg = my_add(100,200) print(f"两数相加...
Blank的头像-小纸条Blank2年前