用ChatGPT寫MicroBit Python下雨程式

 




from microbit import *
import random

# 定义雨滴形状
raindrop = Image("00900:09090:00900:00000:00000")

# 主程序循环
while True:
    # 随机生成雨滴位置
    x = random.randint(0, 4)
    y = 0

    # 下雨效果
    for i in range(5):
        display.set_pixel(x, y + i, 9)
        sleep(300)  # 调整这里的sleep时间来控制速度
        display.set_pixel(x, y + i, 0)

    # 等待一段时间
    sleep(500)


程式碼貼到microbit python editor





留言