# ans = input('경자 씨의 남편의 이름은?:')
# if ans == '김민철':
# print('정답입니다')
# else:
# print('오답입니다')
# Qu = [
# '경자씨의 남편의 이름은?:',
# '말숙씨의 남편의 이름은?:',
# '민지씨의 남편의 이름은?:'
# ]
# r_ans = ['민수', '봉규', '강희']
# r_ans2 = ['minsu', 'bongyu', 'kanghee']
# for i in range(3):
# ans = input(Qu[i])
# if ans == r_ans[i] or ans == r_ans2[i]:
# print('정답입니다')
# else:
# print('오답입니다')
# 주사위 게임
# pl_pos = 6
# def board():
# print('*' (pl_pos-1) + 'P' + '' * (30 - pl_pos))
# print(board())
# GUI
# import tkinter
#
# def click_btn():
# button["text"] = "~!~!펑~!~!"
#
# def click_btn1():
# button1["text"] = "손 모양"
#
#
# root = tkinter.Tk()
# root.title("게임 윈도우")
# root.geometry("1500x1000")
# canvas = tkinter.Canvas(root, width=1500, height=1000,
# bg="black")
# canvas.pack()
# gazou = tkinter.PhotoImage(file="./hyunju.png")
# canvas.create_image(200, 300, image=gazou)
#
# label = tkinter.Label(root, text='어서오세요', font=("System", 24))
# label.place(x=750, y=500)
#
# button = tkinter.Button(root, text='자폭버튼',
# font=("Times New Roman", 24), command=click_btn)
# button1 = tkinter.Button(root, text='손',
# font=("Times New Roman", 24), command=click_btn1)
# button.place(x=750, y=700)
# button1.place(x=500, y=900)
#
# root.mainloop()
# tkinter 게임 만들기
# 도형 그리기
# from tkinter import *
# win = Tk()
# win.geometry("500x500")
# win.title("Game")
#
# cvs = Canvas(win)
# cvs.config(width=500, height=500, bd=0, highlightthickness=0)
# x1 = 100
# y1 = 150
# x2 = 150
# y2 = 300
# p1 = (x1, y1)
# p2 = (x2, y2)
# cvs.create_oval(p1, p2, fill="yellow",
# outline="green", width=10)
# cvs.pack()
# win.mainloop()
# from tkinter import *
# win = Tk()
# win.geometry("500x500")
# win.title("Game")
#
# cvs = Canvas(win)
# cvs.config(width=500, height=500, bd=0, highlightthickness=0)
# x1 = 100
# y1 = 150
# x2 = 150
# y2 = 300
# p1 = (x1, y1)
# p2 = (x2, y2)
# cvs.create_arc(p1,p2, fill="blue", width=5,
# outline="magenta", extent=270)
# cvs.pack()
# win.mainloop()
# 텍스트 생성
# from tkinter import *
# win = Tk()
# win.geometry("500x500")
# win.title("Game")
#
# cvs = Canvas(win)
# cvs.config(width=500, height=500, bd=0, highlightthickness=0)
# x1 = 250
# y1 = 250
# p1 = (x1, y1)
# name = "Arial"
# size = 50
# cvs.create_text(p1, text="GAME",
# font=(name, size), fill="gray")
#
# cvs.pack()
# win.mainloop()
# from tkinter import *
# from PIL import Image
# win = Tk()
# win.geometry("500x500")
# win.title("Game")
#
# cvs = Canvas(win)
# cvs.config(width=500, height=500, bd=0, highlightthickness=0)
# x1 = 100
# y1 = 150
# p1 = (x1, y1)
# w =50
# h=50
# img = Image.open("C:/Users/SooahCodeLab/Pictures/angrybird.jpeg")
# img = img.resize((w,h), Image.ANTIALIAS)
# img = ImageTk.PhotoImage(img, master=win)
# cvs.create_image(p1, image=img)
# cvs.pack()
# win.mainloop()