Hi, I'm Siyu! I wanted to learn how to use text-based coding to solve problems in different ways. Learning Python helped me understand how to plan, write and test my own programs. I enjoy finding new ways to use code to fix problems and make tasks easier. Python has also helped me think step by step and improve my problem-solving skills. I am excited to keep learning and build even more projects in the future. I hope you enjoy looking through my work!
This project shows how to calculate the remainder when one number is divided by another. It’s a great way to practice using arithmetic and the modulo operator (%).
This project is a simple login system that checks if the entered username and password match preset values. If they do, the user is logged in; otherwise, they must try again. It demonstrates how if-else statements handle multiple outcomes based on user input.
In this project, I managed an imaginary library's inventory using a for loop to calculate the number of books on day 20 and the total after 20 days. This project shows how for loops make it easy to perform repetitive tasks.
In this project, I built a countdown timer that uses a while loop to count down from a starting number until it reaches 1. This is important because it shows me how to repeat an action until a condition is met.