DEV Community

Discussion on: I feel struggle to develop

Collapse
 
notsag profile image
Maxime Gaston

Hi,

If you have no programming experience, you'll need to learn algorithmic first: the concepts of variables, control structures...

My advice would be to start small and build around this.
You can try to write a program that:

  1. print something (the famous hello world for example)
  2. then ask a user for input for example a number and print that number
  3. then print odd if the number is odd or even if it is event, you'll play with conditional structures
  4. then try the loops by printing n times the number from the input
  5. make that a function you'll call in your program...

Once you have assimilated the basic concepts you can try some challenge on codewars to train yourself on multiple problems and see solutions from the community to compare to yours.

Afterwars, try making a bigger project to assimilate more complex concepts: a basic CLI game for example, a website (check django or Flask), a bot, crawler or whatever you might find interesting.

You can also check the free course on Udemy: Python for absolute beginners

Collapse
 
arminder_singh profile image
Arminder singh

Nice course on Udemy for python, I Learns a lot

Collapse
 
camicode profile image
CamCode

Hi,
thanks for your advice!
I try Codewars a little bit but It's difficult for me because I don't have logical ability yet and sometimes requirements are incomprehensible.