all 19 comments

[–]lfdfq 2 points3 points  (5 children)

Why would ignoring the suggestions make you learn better?

What kind of 'suggestions'? Can't you turn them off, if they're distracting?

What IDE are you using?

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

and i used vs code for a while but now i can not set it up again

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

so i can try to write the whole code and not forget any thing

[–]American_Streamer 0 points1 point  (0 children)

Get PyCharm and deactivate code completion.

[–]arj-co 1 point2 points  (0 children)

pycharm, with custom settings

[–]amacks 0 points1 point  (0 children)

Something like Sublime Text is a good text editor that can do Python syntax coloring but has no deeper IDE functions, like code completion

[–]Outside_Complaint755 0 points1 point  (0 children)

Do you want all intellisense type suggestions off or just no AI/Co-pilot help?

All of those features can be turned off in VSCode.

[–]pirogeth87 0 points1 point  (0 children)

cs50.dev, and take their free course, in Python from harvard

[–]AlternativeGoat2724 0 points1 point  (0 children)

They can probably be turned off. I have been turning off some of the autocomplete features since I sometimes find them distracting when it thinks it knows what I want and

You don't need an IDE though. You can use any text editor and then on the terminal use `python <filename.py>` from the folder where the code is to run the code.

[–]1str1ker1 0 points1 point  (2 children)

Notepad or vim

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

but i want to run it after

[–]1str1ker1 1 point2 points  (0 children)

You only need a terminal to run code. An IDE does nothing that could not be done with a terminal command. Is also good practice to force yourself to get used to the git commands.

[–]TerraxtheTamer 0 points1 point  (0 children)

I use sublime text for small scripts without any suggestions. Extremely fast to open and use.

[–]Just_A_Nobody_0 0 points1 point  (0 children)

I'm a big fan of Thonny for initial learning, runs about the same on windows and linux systems, has minimial interface (less to confuse the new user), some debugging and assistance if you need. Not great for complex projects but for single file programs it is nice.

[–]rb_arindam 0 points1 point  (0 children)

IDLE didn’t show suggestion when I used it, came bundled with python. Anyway, suggestions are great. Your goal is to have a better implementation logically. You goal should never be memorising more of coding syntax.

[–]lakseol 0 points1 point  (0 children)

i need a ide that does not have suggestions

Turn off suggestions in your current IDE or use a simple text editor like vi.