上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: 源码: 1 import turtle 2 3 4 def getPosition(x, y): 5 turtle.setx(x) 6 turtle.sety(y) 7 print(x, y) 8 9 class Pikachu: 10 11 def __init__(self): 12 self. 阅读全文
posted @ 2021-02-15 19:58 BugMiaowu2021 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 import turtle 2 3 def drawNose(): 4 turtle.pu() 5 turtle.goto(-100, 100) 6 turtle.pd() 7 turtle.seth(-30) 8 turtle.begin_fill() 9 a=0.4 10 for i 阅读全文
posted @ 2021-02-15 19:52 BugMiaowu2021 阅读(710) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 # -*- coding: utf-8 -*- 2 3 from turtle import * 4 import turtle 5 6 speed(0) 7 penup() 8 seth(180) 9 fd(200) 10 seth(0) 11 penup() #外圈头 12 circ 阅读全文
posted @ 2021-02-15 19:50 BugMiaowu2021 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 # -*- coding: utf-8 -*- 2 3 from turtle import * 4 import turtle 5 6 speed(0) 7 penup() 8 seth(180) 9 fd(200) 10 seth(0) 11 penup() #外圈头 12 circ 阅读全文
posted @ 2021-02-15 19:44 BugMiaowu2021 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 源码文件,注释齐全。仅限学习交流。 效果图: 文件结构: 源码: main.py 1 # -*- coding: utf-8 -*- 2 3 import pygame 4 import sys 5 import traceback 6 import wall 7 import myTank 8 i 阅读全文
posted @ 2021-02-15 19:08 BugMiaowu2021 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 发现一款不错的小游戏,玩起来挺有趣,学习的话也有源码可以研究,分享出来大家一起学习。 原项目地址:https://gitee.com/milowork/cangkufan?_from=gitee_search 试玩: 源码下载: 〓〓操作方法〓〓 (菜单中) ·方向键:选择/调整 ·Z:返回 ·X: 阅读全文
posted @ 2021-02-15 17:52 BugMiaowu2021 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 效果图: 开始界面: 游戏中: gameover! 文件结构: game_file:所有游戏逻辑相关的源码; rec:游戏相关的图片、音乐资源; main.py: 游戏的启动文件; 所用到的图片: 源码和文件我会放到文末,感兴趣的自取。 源码及注释: game_windows.py 游戏运行的主函数 阅读全文
posted @ 2021-02-15 16:01 BugMiaowu2021 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 准备:pip install win32gui 可能遇到的麻烦: No module named ‘win32gui‘ 的解决方法(踩坑之旅) 源码: 1 import win32gui 2 import win32con 3 import win32clipboard as w 4 import 阅读全文
posted @ 2021-02-15 09:19 BugMiaowu2021 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 在此把踩过的坑记录下来,我失败的方式,你们可能成功,我成功的方法,你们可能失败。这些包啊库啊的,经验也就是这样了。也许换个时间再执行一次,莫名其妙的可能就成了。bug就是这么奇妙,跟人生一样。说不出来原因,也许有一天我能成为大佬,再回来补上吧。 问题:ModuleNotFoundError: No 阅读全文
posted @ 2021-02-15 09:08 BugMiaowu2021 阅读(699) 评论(0) 推荐(0) 编辑
摘要: 4、动态彩色二维码表白 先在pycharm安装myqr。或者,Python3 必装,然后命令行pip install myqr 也可。 将表白网页:http://sushengbuhuo.gitee.io/love/ 生成二维码,也可以换成其他连接 myqr http://sushengbuhuo. 阅读全文
posted @ 2021-02-14 13:55 BugMiaowu2021 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 语句: from scipy.misc import imread 报错:ImportError: cannot import name ‘imread’ from ‘scipy.misc’ 踩坑:pip install scipy==1.2.0 解决:使用from imageio import i 阅读全文
posted @ 2021-02-14 13:32 BugMiaowu2021 阅读(882) 评论(0) 推荐(0) 编辑
摘要: 1、抖音同款,不同意不许走 源码:love.py 1 # coding: utf8 2 from tkinter import * 3 from tkinter import messagebox 4 import random 5 6 def no_close(): 7 return 8 9 #关 阅读全文
posted @ 2021-02-14 12:23 BugMiaowu2021 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 多图预警 在这里插入图片描述 阅读全文
posted @ 2021-02-14 09:42 BugMiaowu2021 阅读(1607) 评论(0) 推荐(0) 编辑
摘要: 游戏界面截图: 按键控制: 空格: 暂停/开始 W: 上 S: 下 游戏玩法说明: 开始游戏之后,按键盘W/S按键控制球拍上下移动,接住球即可继续游戏,没接住的话游戏结束。结束后按空格可以重新开始游戏 使用的文件: 图片和音乐也可以没有,可跳过, 但是游戏运行后没音效和图片。下载音频和图片压缩包,解 阅读全文
posted @ 2021-02-13 20:59 BugMiaowu2021 阅读(534) 评论(0) 推荐(0) 编辑
摘要: File->Settings->Appearance&Behavior->System Settings->Updates 把Automatically前的勾去掉即可。如图: 阅读全文
posted @ 2021-02-13 15:33 BugMiaowu2021 阅读(759) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页