Reading "Fn" key
I'd like to开发者_运维技巧 find out the easiest way how to read Fn key from my keyboard in Python (Windows).I've tried to use Pygame library, but it didn't work for Fn key.
The "Fn" key is usually a proprietary, device-specific modifier that is handled by the device driver (or the hardware itself). It's not a normal button, and you can't catch it in your code. To be honest, I can't imagine why you'd ever possibly want to.
精彩评论