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

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

by 건티 2024. 9. 30.
728x90

출처 : 반크_독도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()

 

참고풀이 결과]

 

이미지 자료]

독도 )

dokdo02.png
0.43MB
dokdo01.png
0.45MB

 

해바라기 )

sun01.png
0.45MB
sun02.png
0.39MB

 

장미)

rose02.png
0.71MB

 

 

 

 

 

 

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

 

 

반응형

댓글