Mahalitoのブログ

少女ロマンス・スプリングをよろしくお願いします

import tkinter as tk
import random as r
root=tk.Tk()
cvs=tk.Canvas(width=200,height=200)
dice=r.randint(1,6)
if dice==1:
    img=tk.PhotoImage(file="sai1.png")
if dice==2:
    img=tk.PhotoImage(file="sai2.png")
if dice==3:
    img=tk.PhotoImage(file="sai3.png")
if dice==4:
    img=tk.PhotoImage(file="sai4.png")
if dice==5:
    img=tk.PhotoImage(file="sai5.png")
if dice==6:
    img=tk.PhotoImage(file="sai6.png")
cvs.create_image(100,100,image=img)
cvs.pack()
root.mainloop()