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()
참고풀이 결과]
대한민국의 아름다운 영토, 독도의 겨울
반응형
'프로그램 > Python 1000제' 카테고리의 다른 글
Python 309제] 두근두근 파이썬(개정판) CHAPTER 10 도전문제 p319 (0) | 2024.09.30 |
---|---|
Python 308제] 두근두근 파이썬(개정판) CHAPTER 10 도전문제 p316 (0) | 2024.09.30 |
Python 306제] 두근두근 파이썬(개정판) CHAPTER 10 도전문제 p313 (0) | 2024.09.23 |
Python 305제] 두근두근 파이썬(개정판) CHAPTER 9 연습문제 8 p300 (0) | 2024.09.23 |
Python 304제] 두근두근 파이썬(개정판) CHAPTER 9 연습문제 7 p299 (0) | 2024.09.09 |
댓글