+ 1
What are the best Anki cards to memorize Python language elements
One of my problems when I am trying code is that I know what I want to do but I lack the vocabulary in the programming language to do it. Does anyone know of some good Anki cards that I can use to practice and memorize some of these commands? Any help is appreciated.
3 Antworten
+ 1
And this is my advice 🤗 just keep doing them over and over again you will get used to them.
Happy coding!
+ 1
I think the magic is:
- Have the element you want to learn: normally by just seeing it somewhere else
- Look the logic behind the name and the use of that element: for example, if you want to learn "str()" you can see that 'str = string', so everything that is inside of that becomes a string too, and it makes sense because is like a "string maker" but just like "str"
- Use it repeatedly: you can, 1. create a code where you have to use that element at least six times, in a smart way. 2. use it in a code that you already have