python 列舉窗體 EnumWindows

2021-06-07 14:48:54 字數 761 閱讀 7157

**雖然簡單,還要做一下小記,

以後用的到

import win32gui, win32con, win32api

import time, math, random

def _mycallback( hwnd, extra ):

windows = extra

temp=

windows[hwnd] = temp

def testenumwindows():

windows = {}

win32gui.enumwindows(_mycallback, windows)

print "enumerated a total of windows with %d classes" ,(len(windows))

print '------------------------------'

#print classes

print '-------------------------------'

for item in windows :

print windows[item]

print "enumerating all windows..."

h=win32gui.findwindow(none,'\xba\xec\xce\xe5')

print hex(h)

#testenumwindows()

print "all tests done!"

python列舉型別 python基礎 列舉類

python 列舉類 示例 2016 8 30 18 55 25 mengmengcoding coding utf 8 from enum importenum enum是乙個列舉類 month,weekday各為乙個enum類的例項化 month enum month jan feb mar a...

Python列舉轉換

先看乙個列舉類 from enum import enum class color enum yellow 1 green 2 black 3 red 4如何把a 1轉換成列舉型別,很簡單,直接使用方法color a 就可以 from enum import enum class color enu...

python 列舉 時間

1 列舉 參考自python 列舉 enum 使用普通類直接實現列舉 匯入列舉類 from enum import enum 繼承列舉類 class color enum yellow 1 beown 1 注意brown的值和yellow的值相同,這是允許的,此時的brown相當於yellow的別名...