import - How to insert an image in python -


how import or insert image using python.basically want know how import image , how select file , folder in using python.

install pil(python image library) :

then:

import image myimage = image.open("your_image_here"); myimage.show(); 

Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

What is the difference between data design and data model(ERD) -

ios - Can NSManagedObject conform to NSCoding -