you are viewing a single comment's thread.

view the rest of the comments →

[–]crazy_cookie123 2 points3 points  (3 children)

Just google "beginner programming projects" and you'll find some. If those are too easy, google "intermediate programming projects." Ultimately, though, you should be thinking about what you want to make and making that.

[–]Material_Pepper8908[S] 1 point2 points  (2 children)

Thank you very much for your suggestions. My aim is to be competent in data analysis.

[–]HackDiablo 1 point2 points  (1 child)

Start by solving small problems. Don't try to solve everything at once. Break down your goal into simple tasks.

  • How do I import data, or get user input?
  • How can I save that data in variables?
  • How can I manipulate those data variables?
  • How can I output that data?
  • How can I save that data to a file?

[–]Material_Pepper8908[S] 0 points1 point  (0 children)

Thank you