본문 바로가기
프로그램/Python 1000제

Python 307제] 두근두근 파이썬(개정판) CHAPTER 10 도전문제 p315

by 건티 2024. 9. 23.
728x90

출처 : 반크_독도2023

 

참고풀이]

from tkinter import *

window=Tk()
window.geometry("260x240")
w=Button(window, text="버튼 #1", bg="blue", fg="white")
w.place(x=10, y=0)
w=Button(window, text="버튼 #2", bg="purple", fg="white")
w.place(x=200, y=0)
w=Button(window, text="버튼 #3", bg="red", fg="white")
w.place(x=10, y=200)
w=Button(window, text="버튼 #4", bg="gray", fg="white")
w.place(x=200, y=200)
w=Button(window, text="버튼 #5", bg="yellow", fg="black")
w.place(x=100, y=100)

window.mainloop()

 

참고풀이 결과]

 

 

 

 

 

대한민국의 아름다운 영토, 독도의 겨울

 

반응형

댓글