This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import copy | |
| import io | |
| import os | |
| class qn: | |
| "this is the class which is can be used to represent the question object" | |
| def __init__(self,label="",values={}): | |
| self.label= label | |
| self.values=values |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from PIL import ImageGrab | |
| from win32 import win32clipboard | |
| import time | |
| def makeimg(): | |
| name=time.time() |