파이썬게임만들기 - suanlabsuanlab.com/assets/slectures/python/python_game.pdf · python...

20

Upload: others

Post on 17-Feb-2020

10 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now
Page 2: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

파이썬게임만들기

이수안

Page 3: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

목차

1. 파이썬게임

2. Python 설치

3. pygame설치

4. 파이썬게임만들기

• 파이썬게임만들기 3

Page 4: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

1. 파이썬게임

Page 5: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

Python Game

파이썬언어를이용하여파이썬게임만들기

파이썬Python의사전적인뜻은고대신화속의파르나수스Parnassus산의동굴에살던큰뱀

• 파이썬게임만들기 5

Page 6: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

2. Python설치

Page 7: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

Python 다운로드

• 파이썬게임만들기 7

Page 8: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

Python 설치

• 파이썬게임만들기 8

Page 9: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

3. pygame설치

Page 10: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

pygame

pygame은 SDL라이브러리위에구축되어게임과같은멀티미디어어플리케이션을만들기위한오픈소스파이썬프로그래밍라이브러리

• 파이썬게임만들기 10

Silliness built in.

Does not require OpenGL.

Multi core CPUs can be used easily.

Uses optimized C, and Assembly code for core functions.

Comes with many Operating systems.

Truly portable.

It's Simple and easy to use.

Does not require a GUI to use all functions.

Small amount of code.

It's not the best game library.

Page 11: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

파이썬에pygame라이브러리추가

Command Prompt 열기 [시작] – [실행] – cmd.exe

pygame라이브러리추가명령어 pip install pygame

• 파이썬게임만들기 11

Page 12: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

파이썬에서pygame설치확인

Python Shell에서명령어를통해pygame설치확인 import pygame

• 파이썬게임만들기 12

Page 13: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

4. 파이썬게임만들기

Page 14: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

• 파이썬게임만들기 14

Page 15: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

Import & global variable

• 파이썬게임만들기 15

Page 16: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

Class Python

• 파이썬게임만들기 16

Page 17: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

Class Feed

• 파이썬게임만들기 17

Page 18: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

Functions

• 파이썬게임만들기 18

Page 19: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

__main__

• 파이썬게임만들기 19

Page 20: 파이썬게임만들기 - SuanLabsuanlab.com/assets/slectures/python/python_game.pdf · Python 3.7.1 (64-bit) Setup python windows Install Python 3.7.1 (64-bit) Select Install Now

• 파이썬게임만들기 20