gpt4 book ai didi

python - 如何从一组图像中获取随机图像?

转载 作者:太空宇宙 更新时间:2023-11-04 01:19:40 24 4
gpt4 key购买 nike

如何从 pygame Sprite 中的一组图像中获取图像?到目前为止,我做到了这一点:

for i in range(1,3):
img = pygame.image.load("house"+str(i)+".png").convert()
img.set_colorkey(white)
self.images.append(img)

但我不太确定如何从图像列表中随机收集图像。我该怎么做呢?如果可能的话,我如何使它成为该图像列表中图像的机会,例如该图像出现在 pygame 窗口中的机会的 1/10? Python 2.6、Pygame、Windows 7

最佳答案

您似乎有一个图像列表绑定(bind)到名称 self.images
如果您想随机选择其中之一:

import random

random_image = random.choice(self.images)

关于python - 如何从一组图像中获取随机图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22093469/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com