I have a feeling I’m stuck in tutorial hell, and I need to start actually building things. But I don’t know where to start :/
Also I’m really bad at syntax. I only know concepts like for loops, while loops, if-elif-elses, etc…
So maybe something that helps me learn more about coding syntax would be helpful.
Thanks!

For basic mechanics it’s really good to start with a text based tic tac toe.
It forces you to use for loops, read from input, parse, arrays, small amount of state, rendering said state and conditionals.
To go the extra mile try to make it look tidy. This can be done by using a class to represent a state and having single purpose functions.