[Tutor] how to express shift+enter in python

Alex Kleider akleider at sonic.net
Sun Sep 28 22:14:20 CEST 2014


On 2014-09-28 07:53, lei yang wrote:
> Hi expert,
> 
> How to express shift+enter in python ?
Have you tried ^J
or chr(10)?
i.e.
shift_plus_enter = chr(10)



More information about the Tutor mailing list