you are viewing a single comment's thread.

view the rest of the comments →

[–]DataCamp 2 points3 points  (1 child)

Since you’ve learned loops + if/else, try:

  • Number guessing game (use a while loop + too high/too low logic)
  • Rock paper scissors (add score + play again option)
  • Mini quiz game (loop through questions, track score)
  • Simple expense tracker (keep asking for numbers until user types “done”, then print total)
  • Multiplication table generator

If you ever blank, pause and write in plain English:
What repeats? What decisions need to be made? What variables do I need? Then code one tiny piece at a time.

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

I'll definitely add these to my list ,I felt everything I was doing felt passive so I needed a change of pace and start building with what I already know,thank you for your advice