qiebunaire

导航

 

2023年12月18日

摘要: 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日

摘要: 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日

摘要: 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日

摘要: (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日

摘要: 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) 编辑