I am a c++ User and im am newly learning python,
i used to use getch()
statements in c++ to get user input without having to press enter although it had some limitation ... I am looking for a similar function in python (anything other than raw_input()
& input()
which require enter key stroke). would prefer the code to have cross platform support
for eg in c++ :
void getkey()
{
_getch();
cout<<"You Hit A Key";
}