DEV Community

Cover image for Week 2 – Learning to Code Together
Kyle Diamond
Kyle Diamond

Posted on

Week 2 – Learning to Code Together

Hi everyone,

Week 1 is finished. I didn’t post every single day, but I kept learning and that’s what matters.

Last week I practiced Python basics like variables, inputs, building a simple calculator, and learning about if/else statements. I also started learning some math concepts and the basics of machine learning.

Now I’m starting Week 2.

I’ll continue sharing daily updates about what I learn and build. This isn’t just for Python — any programming language is welcome.

If you’re learning too and want to stay consistent, feel free to join and share your progress.

Mr Diamond

Top comments (3)

Collapse
 
mr_diamond profile image
Kyle Diamond

Day 6:
Today I learned about if and else statements. I made a small program that asks a question and checks if the answer is correct. It’s simple, but it helped me understand how decision-making works in code.

Collapse
 
mr_diamond profile image
Kyle Diamond

Day 8:

Today I built a small adventure game using Python. The player makes choices, and the story changes depending on what they pick.

This helped me practice using if/else statements and thinking about how programs can branch into different paths.

Collapse
 
mr_diamond profile image
Kyle Diamond

Day 7:
Today I practiced loops by building a small guessing game using a while loop. The user gets limited tries to guess the correct number.