2011-10-15 40 views

回答

3

Event.state保存修飾鍵的OR狀態。所以,你可以嘗試這樣的:

modifiers = [] 
if event.state & 1: 
    modifiers.append('Shift') 
if event.state & 4: 
    modifiers.append('Control') 
# ... etc 
print '-'.join(modifiers) 

詳情請參閱here

+0

優秀。我目前參加NMT,根據經驗我可以說Shipman教授是python所有東西的王者。不幸的是,這是星期六。幸運的是,ekhumoro真是太棒了。這正是我需要的。 – voxeloctree

相關問題