출처 : 반크_독도2023
참고풀이]
from tkinter import *
window=Tk()
photo1=PhotoImage(file="dokdo01.png")
photo2=PhotoImage(file="dokdo02.png")
photo3=PhotoImage(file="sun01.png")
photo4=PhotoImage(file="sun02.png")
photo5=PhotoImage(file="rose02.png")
photo6=PhotoImage(file="rose02.png")
il1=Label(window, height=300, width=400, image=photo1)
il2=Label(window, height=300, width=400, image=photo2)
il3=Label(window, height=300, width=400, image=photo3)
il4=Label(window, height=300, width=400, image=photo4)
il5=Label(window, height=300, width=400, image=photo5)
il6=Label(window, height=300, width=400, image=photo6)
il1.grid(row=0, column=0, padx=5, pady=5)
il2.grid(row=0, column=1, padx=5, pady=5)
il3.grid(row=1, column=0, padx=5, pady=5)
il4.grid(row=1, column=1, padx=5, pady=5)
il5.grid(row=2, column=0, padx=5, pady=5)
il6.grid(row=2, column=1, padx=5, pady=5)
window.mainloop()
참고풀이 결과]
이미지 자료]
독도 )
해바라기 )
장미)
대한민국의 아름다운 영토, 독도
'프로그램 > Python 1000제' 카테고리의 다른 글
Python 310제] 두근두근 파이썬(개정판) CHAPTER 10 도전문제 p330 (0) | 2024.09.30 |
---|---|
Python 309제] 두근두근 파이썬(개정판) CHAPTER 10 도전문제 p319 (0) | 2024.09.30 |
Python 307제] 두근두근 파이썬(개정판) CHAPTER 10 도전문제 p315 (0) | 2024.09.23 |
Python 306제] 두근두근 파이썬(개정판) CHAPTER 10 도전문제 p313 (0) | 2024.09.23 |
Python 305제] 두근두근 파이썬(개정판) CHAPTER 9 연습문제 8 p300 (0) | 2024.09.23 |
댓글