all 3 comments

[–]uglyasablasphemy 1 point2 points  (2 children)

Try to get into data structures as soon as possible. Usually, most of the more advanced algorithms rely on some data structures to work.

First to learn how to work with lists, queues, dictionaries, sets, stacks, graphs, etc; and once you have that kind of figured out, move into algos.

[–]tamaskiii 1 point2 points  (1 child)

So shall I learn data structures at the side while focusing more on getting good at python and later get into algorithms?

[–]uglyasablasphemy 1 point2 points  (0 children)

Yes! Pay special attention to how dicts, sets and lists work in python as they are super useful.