【プログラムケース】Pythonベースのタイミングでスクリーンを切り取り、指定されたパスに格納するプログラム


このプログラムは比較的簡単で、以下のように記録されています.
import time
from PIL import ImageGrab

#   
def Screenshot():
    nowtime = time.strftime('%Y_%m_%d_%H_%M_%S', time.localtime(time.time()))
    print(nowtime)
    #         
    im = ImageGrab.grab()
    #       
    im.save('C:/Users/Jack/Desktop/test/%s.png' %(nowtime))  

while True:    
    print("  !")
    Screenshot()
    print("  ")
    print("
"
) time.sleep(10) # 10s