Kaydet (Commit) c66394d0 authored tarafından Guido van Rossum's avatar Guido van Rossum

Initial revision

üst 23d7b4bb
from Tkinter import *
import sys
def main():
filename = sys.argv[1]
root = Tk()
label = Label(root)
img = PhotoImage(file=filename)
label['image'] = img
label.pack()
root.mainloop()
main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment