资源简介
信你大家在学习编程语言的过程中经常会碰到一个问题,那就是学完了基本的语法以后不知道自己要做什么。其实,先找一些简单的项目进行练手是非常好的一种学习编程的方式。前段时间学习了python的基本语法,这里给大家推荐一本适合新手学习的python教程,叫《python编程:从入门到实践》。这里给大家分享其中的一段外星人入侵的代码(这里贴出13.1到14.1的代码,后面会补充完整给大家)。
代码片段和文件信息
import pygame
from pygame.sprite import Sprite
class Alien(Sprite):
“““表示单个外星人的类“““
def __init__(selfai_settingsscreen):
“““初始化外星人并设置其起始位置“““
super().__init__()
self.screen=screen
self.ai_settings=ai_settings
#加载外星人的图像,并设置其rect属性
self.image=pygame.image.load(‘images/alien.bmp‘)
self.rect=self.image.get_rect()
#每个外星人最初都在屏幕左上角附近
self.rect.x=self.rect.width
self.rect.y=self.rect.height
#存储外星人的准确位置
self.x=float(self.rect.x)
def check_edges(self):
“““如果外星人位于屏幕边缘,就返回True“““
screen_rect=self.screen.get_rect()
if self.rect.right>screen_rect.right:
return True
elif self.rect.left<=0:
return True
def update(self):
“““向左或者向右移动外星人“““
self.x+=(self.ai_settings.alien_speed_factor*
self.ai_settings.fleet_direction)
self.rect.x=self.x
def blitme(self):
“““在指定位置绘制外星人“““
self.screen.blit(self.imageself.rect)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-09-07 16:59 __pycache__\
文件 1471 2018-08-30 14:15 __pycache__\alien.cpython-37.pyc
文件 1244 2018-08-27 13:49 __pycache__\bullet.cpython-37.pyc
文件 1233 2018-08-30 16:52 __pycache__\button.cpython-37.pyc
文件 5755 2018-09-07 16:59 __pycache__\game_functions.cpython-37.pyc
文件 749 2018-09-03 17:04 __pycache__\game_stats.cpython-37.pyc
文件 859 2018-08-30 16:05 __pycache__\settings.cpython-37.pyc
文件 1258 2018-08-30 16:05 __pycache__\ship.cpython-37.pyc
文件 1292 2018-08-30 14:02 alien.py
文件 1548 2018-08-31 14:17 alien_invasion.py
文件 1134 2018-08-27 13:49 bullet.py
文件 1197 2018-08-30 16:52 button.py
文件 7525 2018-09-07 16:59 game_functions.py
文件 452 2018-09-03 17:03 game_stats.py
目录 0 2018-08-28 16:36 images\
文件 2144 2018-08-28 16:36 images\alien.bmp
文件 6048 2018-08-28 16:35 images\alien1.bmp
文件 4222 2018-08-27 10:42 images\ship.bmp
文件 23467 2018-08-20 12:59 images\ship_sourceimg.bmp
文件 4385142 2018-08-10 16:43 pygame-1.9.4-cp37-cp37m-win_amd64.whl
文件 651 2018-09-13 12:57 settings.py
文件 1409 2018-08-30 16:04 ship.py
- 上一篇:基于python的小游戏 含源代码
- 下一篇:python之外星人入侵完整版程序源码
相关资源
- python之外星人入侵完整版程序源码
- 基于python的小游戏 含源代码
- 深度学习入门 基于python理论与实现
- 混合地理加权回归python实现代码
- 基于python的单机版中国象棋
- python3基础教程第三版高清
- python入门笔记强烈推荐.zip
- Python-自然场景文本检测PSENet的一个
- Python-在特征金字塔网络FPN的Pytorch实现
- Python-PyTorch实时多人姿态估计项目的实
- Python-用PyTorch10实现FasterRCNN和MaskRCNN比
- Python-心脏核磁共振MRI图像分割
- Python-基于YOLOv3的行人检测
- Python-数据结构与算法leetcodelintcode题解
- Python-RLSeq2Seq用于SequencetoSequence模型的
- Python-PyTorch对卷积CRF的参考实现
- Python-高效准确的EAST文本检测器的一个
- Python-BilibiliLiveBarrage实时监控B站直播
- Python-利用Python图虫网摄影作品
- Python-pytorch实现的人脸检测和人脸识别
- Python-UNet用于医学图像分割的嵌套UN
- Python-TensorFlow弱监督图像分割
- Python-基于tensorflow实现的用textcnn方法
- Python-Keras实现Inceptionv4InceptionResnetv1和
- Python-用pyqt5和parametrics实现很酷的动画
- Python-pytorch中文手册
- Python-FastSCNN的PyTorch实现快速语义分割
- Python-Goose3一个用Python编写的文章提取
- Python-滑动窗口高分辨率显微镜图像分
- Python-使用MovieLens数据集训练的电影推
评论
共有 条评论