- 博客(23)
- 资源 (3)
- 收藏
- 关注
原创 Python解压小乌龟
今天给大家带来一个解压小乌龟!!!!二话不说,上代码(整活):import randomimport turtle as timport time as tit.colormode(255)t.pensize(4)t.speed(0)red = 0blue = 0green = 0while True: for i in range(1,20): red = random.randint(0,255) blue = random.rand
2022-05-28 10:32:11 118
原创 Python游戏——Pong
大家还记得小时候玩的游戏——“Pong”吗?今天,我们使用Python还原这个经典游戏。整活!from turtle import Screenimport turtle as timport timet.tracer(0) #加速画图#屏幕左边side = 400top = 300#创建小球ball = t.Turtle()ball.penup()#抬笔,移动中不留下痕迹ball.shape("circle")ball.color("darkorange")ball_x
2022-05-16 12:33:24 582 1
原创 C++游戏--武将PK(PvE游戏)
今天,C++板武将PK出炉啦!!!上代码:#include <cstdio>#include <iostream>#include <cmath>#include <algorithm>#include <string>#include <cstring>using namespace std;int health1 = 5, health2 = 5;int power1 = 0, power2 = 0;int
2022-05-15 09:57:06 223
原创 翻译系统(爬虫)
今天,Python版翻译系统出炉啦!代码:import requestsbase_url = 'https://fanyi.baidu.com/sug'kw = input('请输入要翻译的英文单词:')data = { 'kw': kw}headers = { 'content-length': str(len(data)), 'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
2022-04-24 13:37:42 427
原创 C++游戏——武将PK(PvE)
我的第一个C++游戏出炉了!!代码:#include <cstdio>#include <iostream>#include <cmath>#include <algorithm>#include <string>#include <cstring>using namespace std;int health1 = 5, health2 = 5;int power1 = 0, power2 = 0;int cnt
2022-04-23 21:13:57 2473
原创 Python计算器
工作中,时长需要计算器。今天,Python版计算器出炉了!!!!!!!!!!!!!!!!def adition(): a = input("请输入第一个数:") b = input("请输入第二个数:") s = a + "+" + b n = eval(s) print(s,"=",n) def subtraction(): a = input("请输入第一个数:") b = input("请输入第二个数:") s = a +
2022-03-24 20:36:48 3764
圣诞树源码(py程序,请先下载python编译器)
2022-12-10
JavaScrip的jQuery数据包
2022-09-25
关于#pip#的问题,如何解决?
2022-11-26
TA创建的收藏夹 TA关注的收藏夹
TA关注的人