분류 전체보기 323

기억력 테스트 게임 with Pygame

'기억력 테스트' 게임 만들기 with Pygame 1. Pygame Documentation - https://www.pygame.org/docs/ Pygame Front Page — pygame v2.1.1 documentation Pygame, as of 1.9, has a camera module that allows you to capture images, watch live streams, and do some basic computer vision. This tutorial covers those use cases. www.pygame.org 2. 참고 Blog, Youtube - https://nadocoding.tistory.com/87 [파이썬] 기억력 테스트 게임 개발 어느 날 우연히..

오락실 고전 게임 with Pygame

오락실 고전 게임 '공 부시기' 게임 만들기 with Pygame 1. Pygame Documentation - https://www.pygame.org/docs/ Pygame Front Page — pygame v2.1.1 documentation Pygame, as of 1.9, has a camera module that allows you to capture images, watch live streams, and do some basic computer vision. This tutorial covers those use cases. www.pygame.org 2. 참고 Blog, Youtube - https://nadocoding.tistory.com/8 [나도코딩] 파이썬 활용편1 게임개발 ..

계산기 with Tkinter

현실에서 사용되는 계산기와 같은 모습의 계산기 만들기 1. 기능 '+', '-', '*',' /' 등 의 연산 기능과 'C' (Clear), '=' 등의 부가 기능. 다음 순서의 버튼 누르기 가능 '105' → '+' → '30' → '-' → 70 → '*' → '2' → '/' → '=' : 26 2. 코드 import tkinter as tk input_value, post_value = 0, 0 # 첫번째 숫자, 두번째 숫자 operator_pre = 0 # '+', '-', '*', '/' : 계산할 연산자 기억용. operator = {'+':1, '-':2, '/':3, '*':4, 'C':5, '=':6} ### 0~9 숫자 def number_click(value): # value 누른 ..