what are the simplest python projects for beginners? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what are the simplest python projects for beginners?

Python

31st Jul 2019, 10:53 AM
James Bronny
James Bronny - avatar
6 Answers
+ 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!
31st Jul 2019, 11:15 AM
Ayush Gupta
Ayush Gupta - avatar
+ 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.
31st Jul 2019, 11:24 AM
Ayush Gupta
Ayush Gupta - avatar
+ 1
Thanks a lot
31st Jul 2019, 11:56 AM
James Bronny
James Bronny - avatar
0
If-elif calculator Gambling Game (random) Palindrome detector Etc
31st Jul 2019, 11:05 AM
Trigger
Trigger - avatar
0
Can you give me a guide on Palindrome detector?
31st Jul 2019, 11:08 AM
James Bronny
James Bronny - avatar
0
A palindrome is a word (string) that is the same backwards as forwards 'abba' -> True 'OllsllO' -> True 'racecar' -> True 'abbd' -> False
31st Jul 2019, 11:10 AM
Trigger
Trigger - avatar