mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			219 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			219 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
| 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()
 | 
