自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 想在安卓手机上使用Tkinter需要通过下面这个网站下载

http://m.2265.com/down/249012.html

2022-04-21 12:30:37 1696

原创 有没有需要素材:小狗摇头.GIF的人啊?

2022-04-20 10:58:40 119

原创 用python做个捕蛋器小游戏

from itertools import cyclefrom random import randrangefrom tkinter import Canvas, Tk, messagebox, fontcanvas_width = 800canvas_height = 400root = Tk()root.title('《Python》')c = Canvas(root, width=canvas_width, height=canvas_height, background='de.

2021-07-20 13:16:37 511

原创 用Python做个捕蛋器

from itertools import cyclefrom random import randrangefrom tkinter import Canvas, Tk, messagebox, fontcanvas_width = 800canvas_height = 400root = Tk()root.title('《Python》')c = Canvas(root, width=canvas_width, height=canvas_height, background='de.

2021-07-20 13:13:27 397

原创 2021-06-12

用Python做猜数字游戏游戏源码:import randombot=int(input(‘Set range bottom\n’))top=int(input(‘Set range top\n’))rand=random.randint(bot,top)print (‘Random number in [’+str(bot)+’,’+str(top)+’] generated!’)num=int(input(’###Guess the number###\n’))cnt=1while (

2021-06-12 10:03:42 177 2

原创 2021-06-12

标题猜数字游戏代码猜数字游戏代码:import randombot=int(input(‘Set range bottom\n’))##top=int(input(‘Set range top\n’))rand=random.randint(bot,top)print (‘Random number in [’+str(bot)+’,’+str(top)+’] generated!’)num=int(input(’###Guess the number###\n’))cnt=1while

2021-06-12 09:59:03 134

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除