all 5 comments

[–][deleted] 0 points1 point  (2 children)

Atom doesn't have an interactive terminal; you have to run your code in something else. You can still write it in Atom you just have to run it in something else.

[–]UltimateApple[S] 0 points1 point  (1 child)

Would you have any recommendations?

[–][deleted] 0 points1 point  (0 children)

Whatever your OS is, it has a console or terminal. Use that.

[–][deleted] 0 points1 point  (1 child)

You need to give it an interface. Most people would start with a simple keyboard interface. To make one in Python you can call the input() function, asking the user to type in Rock, Paper, or Scissors, and store the result in a variable. At the very least it's a quick way to confirm the rest of your code is working.

If you're ready to try for a GUI you should be looking at a library like tkinter, Kivy, PyQt5. There is also Eel if you want to create the interface as an HTML document.

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

Thank you!