import tkinter.ttk as ttk import tkinter.messagebox as msgbox from tkinter import * from tkinter import filedialog from PIL import Image import os root = Tk() root.title("자료구조 GUI") # 이미지 통합 def merge_image(): #print(list_file.get(0, END)) images = [Image.open(x) for x in list_file.get(0,END)] widths = [x.size[0] for x in images] heights = [x.size[1] for x in images] max_width, total_height = ma..
[이번에는 pygame을 이용해 간단히 네모를 공격해 쪼개는 게임을 소개하겠습니다.] 1. 기본 초기화시키기 필요한 모듈인 os, pygame을 불러옵니다. (os는 추후에 경로를 쉽게 가져오기 위함) 화면의 크기를 설정합니다. 화면의 타이틀을 설정합니다. import os import pygame ############################################################## # 기본 초기화 (반드시 해야 하는 것들) pygame.init() # 화면 크기 설정 screen_width = 640 # 가로 크기 screen_height = 480 # 세로 크기 screen = pygame.display.set_mode((screen_width, screen_height))..
- Total
- Today
- Yesterday
- 1254
- 티처블 머신
- 코드업
- Anaconda
- 바닐라 js
- SMTP
- 도전
- 크롤링
- notion api
- 2022.02.05
- django
- 타이탄의도구들
- 1255
- 1251
- 주석
- JavaScript
- 1253
- 컨트롤타임
- 바닐라 javascript
- Codeup
- pygame
- 문제풀이
- 아나콘다
- 사칙연산
- Python
- 꿈두레
- 코드설명
- 1252
- localstorage
- promise반환
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |