What I Learned from Practising Python Basics When I started learning Python, I thought the most important thing was to remember syntax. After practising for a while, I realised that learning programming is not only about memorising commands. It is more about understanding logic, solving problems, and improving through practice. One of the first things I learned was how important variables are. Variables allow a program to store information and use it later. At first, this seemed simple, but I soon understood that choosing clear variable names can make code much easier to read. Good naming is a small habit, but it helps make programs more understandable. I also practised conditional statements such as if , elif , and else . These statements help a program make decisions. For example, a program can check a user's input and respond differently depending on the result. This helped me understand how programs can become interactive and flexible. Loops were another important topic.…