2015. 2. 20. 21:19
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

import pygame,os,sys,socket

pygame.init()
screen=pygame.display.set_mode((640,360),0,32)

while True:
    for event in pygame.event.get():
        if event.type ==pygame.QUIT:
            pygame.quit()
            sys.exit()

    pygame.display.flip()


'Python' 카테고리의 다른 글

SimpleServer.py  (0) 2015.03.04
chat_server2.py // chat_client2.py // communication.py  (0) 2015.02.25
getMac.py  (0) 2015.02.20
monotonicTIme.py  (0) 2015.02.18
storingSnippets.py  (0) 2015.02.18
Posted by af334