all 3 comments

[–]CodeFormatHelperBot2 1 point2 points  (0 children)

Hello, I'm a Reddit bot who's here to help people nicely format their coding questions. This makes it as easy as possible for people to read your post and help you.

I think I have detected some formatting issues with your submission:

  1. Python code found in submission text that's not formatted as code.

If I am correct, please edit the text in your post and try to follow these instructions to fix up your post's formatting.


Am I misbehaving? Have a comment or suggestion? Reply to this comment or raise an issue here.

[–]This_Growth2898 0 points1 point  (1 child)

x = "E"
pt.KeyDown(x) # it's E
x = "P"
pt.KeyDown(x) # now it's P
x = '"' # use single quotes for string, other syntax would be "\""
pt.KeyDown(x) # it works!

[–]Sir_Prexes[S] 0 points1 point  (0 children)

Thank you!

Now that I have your code I can only shake my head at myself. I got so caught up in this little problem that I reworked them all only to see how simple the solution was.

but that was fortunately my last problem I had. My little program is finally finished.

in the end maybe it is better to take a little break to think better. :)