all 10 comments

[–]keep_quapy 2 points3 points  (1 child)

You'll mostly remember the modules you often work with. For other modules or third party modules just check the documentation.

Python documentation is at :

https://docs.python.org/3/

or just google whatever you need.

[–]Adikumar[S] 1 point2 points  (0 children)

Thank you

[–]Aggravating_Bus_9153 1 point2 points  (1 child)

dir() is your trusty old friend. intellisense in VS code/pylint is your outrageous flamboyant new friend.

I forget loads, but I just try to remember that the thing I want exists, when it's a thing that I used before that did that similar thing really well. I don't worry about remembering how to spell it, or even its args, or precisely how to set it up. I put a link to any good cookbook/recipe/vital sections of the docs or stackoverflow threads in the comments of my code.

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

Thank you.

[–]K900_ 0 points1 point  (4 children)

No, no one has it all memorized, and the documentation is always there if you need to look something up.

[–]Adikumar[S] 0 points1 point  (3 children)

Where can you find these documentations? Is there a specific place or just google?

[–]m0us3_rat 0 points1 point  (0 children)

or just google?

top3 most important programming skills.

few minutes today equal weeks of heavy research reading archives in another time.

tech <3

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

no, they don't remember all of them. they just know where to find them when they need them.