+ 3
I completed python tutorial but dont know how to write a block of code and dont know even where to apply it..
5 Answers
+ 16
New coders always have that problem because they've only learned the syntax.
To write a program you also need some knowledge of algorithms.
Take a look at this site.
https://m.wikihow.com/Write-an-Algorithm-in-Programming-Language
+ 13
After learning python learn data structures and try to learn patterns .. And also learn simple programme such as reverse a string, factorial of number , reversing a number . It will help you create your own programme...
+ 6
There are examples in the tutorial and a code playground to practice the basics.
+ 4
This happened to me when I first started learning from sololearn.
First try implementing small problems like finding factorial or greatest number in list, or conversions.
When you're good with them, look for basic problem excercises on sololearn or on Google đ
0
Now that you've finished the tutorial, it's time to apply what you've learned.
You can try solving some programming exercises like the ones found here in SL.
Once you are comfortable enough, you can now build a personal project on your own. It doesn't have to be a complicated project. Start small and add additional features as you go along.