6 Respostas
+ 1
You're just on level 2 right now . Best projects at such level would be to make something of your own , not a complex program. Just code ! Whatever you learned , pour that all in the best way possible. Even if you only know how to print and do basic Mathematics , just do that!
Moreover don't restrict your learning to just SoloLearn. There's a YouTube channel named ,"Telusko" . His Python tutorials are awesome. Check him out.
And keep coding!
+ 1
Once you reach somewhere near level 4 . Try building a basic calculator with "input" and " if-else ". And once you build it don't just stop there , there will be always a room to improve. You'll find a lot of new stuff like "try except" , "for else " , "while-for loops" and implement all these in that calculator. Once you master it , add graphics. That's how you learn programming , best way to learn programming is not by reading courses chapter wise , even for the basic programs you might be needing an advance library . There's no rule to learn programming syllabus wise , just learn whatever your program demands.
+ 1
Thanks a lot
0
If-elif calculator
Gambling Game (random)
Palindrome detector
Etc
0
Can you give me a guide on Palindrome detector?
0
A palindrome is a word (string) that is the same backwards as forwards
'abba' -> True
'OllsllO' -> True
'racecar' -> True
'abbd' -> False