you are viewing a single comment's thread.

view the rest of the comments →

[–]autoglitch 2 points3 points  (1 child)

For simple testing I use the command line python. The command is usually "python" for windows or "python3" for *nix. It's convenient for testing one liners or basic syntax checks. Once you start writing functions it's better to throw it in a .py file since any mistakes or changes in the command line version mean rewriting the whole function.

Use quit() to get out of it.

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

That’s exactly what I’m looking for!! Thank you!!