会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
qiebunaire
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2023年12月18日
GUI程序设计--班级信息收集系
摘要: import pandas as pdimport tkinter as tkfrom tkinter import messagebox # 创建数据库表# Excel表中必须包含学号、班级、姓名这三列class_info = pd.read_excel('student.xlsx') # 创建G
阅读全文
posted @ 2023-12-18 17:44 企鹅不耐热
阅读(10)
评论(0)
推荐(0)
编辑
2023年12月17日
jieba-聊斋
摘要: import jiebatxt=open("聊斋.txt","r",encoding='utf-8').read()words=jieba.lcut(txt)counts={}for word in words: if len(word)==1: continue else: counts[word
阅读全文
posted @ 2023-12-17 16:38 企鹅不耐热
阅读(26)
评论(0)
推荐(0)
编辑
2023年12月15日
flappy bird
摘要: import pygameimport sysimport random# 素材参考地址:https://www.aigei.com/s?q=flappy+bird&type=2d class Bird(object): """定义一个鸟类""" def __init__(self): """定义初
阅读全文
posted @ 2023-12-15 12:27 企鹅不耐热
阅读(21)
评论(0)
推荐(0)
编辑
2023年12月8日
12.8python作业
摘要: (2)网页360 import requests url = 'https://www.360.com'for i in range(20): response = requests.get(url) print(f"第{i+1}次访问") print(f'Response status: {res
阅读全文
posted @ 2023-12-08 21:52 企鹅不耐热
阅读(3)
评论(0)
推荐(0)
编辑
2023年11月21日
模拟体育竞技分析--羽毛球
摘要: 羽毛球比赛规则: 1. 21 分制,3局2胜为佳 2. 每球得分制
阅读全文
posted @ 2023-11-21 08:06 企鹅不耐热
阅读(4)
评论(0)
推荐(0)
编辑
2023年11月19日
七段数码管绘制
摘要: import turtle,datetimedef drawGap(): #绘制数码管间隔 turtle.penup() turtle.fd(5)def drawLine(draw): #绘制单段数码管 drawGap() turtle.pendown() if draw else turtle.p
阅读全文
posted @ 2023-11-19 12:52 企鹅不耐热
阅读(3)
评论(0)
推荐(0)
编辑
2023年11月16日
算pi
摘要: import mathimport timeimport decimal time_start = time.time() D = decimal.Decimaldecimal.getcontext().prec = 4002 a = 1b = 1/D(2).sqrt()t = 1/4p = 1 w
阅读全文
posted @ 2023-11-16 20:50 企鹅不耐热
阅读(18)
评论(0)
推荐(0)
编辑