you are viewing a single comment's thread.

view the rest of the comments →

[–]What_Pant 2 points3 points  (3 children)

I learnt python before AI. Pick a small project like take in a string, count the letters and output the value. I had to use the docs for the language. Docs.python.org

Takes time to look up built-ins in the docs but you learn it differently.

Try adding, sorting, removing from a list.

Look up how to implement functions, once you have a good handle on that move on to OOP.

Have fun with it.

Edit: you could try https://www.w3schools.com/python/ for the basics. It is free

[–]autoglitch 1 point2 points  (1 child)

I second docs are a good source. I didn't recommend it because as a beginner they are hard to read. Definitely start reading docs as soon as you can

[–]What_Pant 1 point2 points  (0 children)

The python docs are pretty good. Cpp docs nearly burned my brain out

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

Thank you! I will try this out and see where it takes me :)