l1101209528 发表于 2014-2-13 17:07:31

爱心传大家,本着有资源就下,下了也不看的精神,顶一个

sloerbing 发表于 2014-2-23 23:31:34

哈哈。。。。。。

jfvhjrtrt 发表于 2014-3-8 18:40:06

satdveg nbsvfs

Python_PA 发表于 2014-3-11 23:56:05

:big改天Python写个自动下载指定网页的图片的出来,相当实用~~~运营必备啊

zap2001 发表于 2014-3-12 01:07:29

看看源代码是什么

勇家周 发表于 2014-3-16 23:23:28

# 1 - Import library
import pygame
from pygame.locals import *

# 2 - Initialize the game
pygame.init()
width, height = 640, 480
screen=pygame.display.set_mode((width, height))

# 3 - Load images
player = pygame.image.load("resources/images/dude.png")

# 4 - keep looping through
while 1:
    # 5 - clear the screen before drawing it again
    screen.fill(0)
    # 6 - draw the screen elements
    screen.blit(player, (100,100))
    # 7 - update the screen
    pygame.display.flip()
    # 8 - loop through the events
    for event in pygame.event.get():
      # check if the event is the X button
      if event.type==pygame.QUIT:
            # if it is quit the game
            pygame.quit()
            exit(0)

Niklaus 发表于 2014-4-16 17:12:23

表示还不懂怎么写退出。。。

西殴 发表于 2014-4-16 18:47:58

只是看看那

『独一不二』 发表于 2014-4-16 18:55:17

这种小游戏最适合我这种新手{:1_1:}

等老子火了 发表于 2014-4-16 19:57:52

感谢分享学习学习:big:big

simple123 发表于 2014-4-18 19:44:46

这个必须要看看那啊

885031918 发表于 2014-8-28 13:34:02

import random
secret = random.randint(1,10)
print('--------第一个python程序--------')
temp = input("猜猜我心中想的数字:")
guess = int(temp)
count = 0
while guess != secret:
    if count == 2:
      print("三次机会用完了,很遗憾你还是没有猜中。")
      break
    if guess > secret:
      print("猜错了,大了")
      
    else:
      print("猜错了,小了")
    count = count + 1
    print('再给你一次机会:')
    temp = input()
    guess = int(temp)
if guess == secret:
    print("猜对了哎,但是猜对也没有奖励!")
print('游戏结束^_^!')

wei_Y 发表于 2014-8-28 19:23:57

exe要怎么弄。。

wingwong 发表于 2014-8-28 19:53:17

谢谢分享

dh89 发表于 2016-10-21 08:29:22

学习来了!

MaoYi62498 发表于 2016-10-21 11:29:32

哎哟,不错哟,我能说我是来混鱼币呢吗

怎么还是菜鸟 发表于 2016-10-22 23:03:50

膜拜

Minic 发表于 2016-10-27 23:30:26

還不錯說
不過區間有點大
只有三次好像有點少

薇薇 发表于 2016-10-29 23:09:47

支持你

xinshouxuexi 发表于 2016-10-30 08:28:20

我服!
页: 1 2 [3] 4
查看完整版本: 新人,献上自己写的一个小游戏...