Skip to main content

Posts

Showing posts from April, 2024

The Start of a Brand New Journey: Making a Text-Based Adventure Game in Python.

  I felt like I was doing something wrong. Introduction Hello there, coders!  It's been quite a while, I know.  I took a small rest so that I could fully transition into a weekly schedule instead of a daily one, but now I'm here! Today, I'm going to be talking about me starting out to make my first real project.  I watched a few YouTube videos in my hiatus and realized I wasn't doing anything useful other than doing exercises, so I decided to start a project! I'm a bit guilty of AI usage, because I used it to give me ideas for projects. It's not much of a big deal, but I felt like I had to mention it. The Start So when I asked it, it gave me an idea for a person exploring a mansion.  So, I expanded on that by adding a bit of mystery and spooky into it, with the idea now being that a overtly curious child exploring a mansion.  Little did they know, it was haunted! First of all, I started a character introduction thing, with my program first asking the person'

Python Lists: Beginner Python Lists Introduction and A Beginner's Experiences Learning It

  Apparently, we're doing data structures here! Introduction Hello there, coders! Today, we're talking about lists! I'm also going to be recalling my experience learning about lists after so many minutes. I was actually supposed to post this much earlier but because of the light cutouts coupled with my english tuition, AND my headphones not working, I couldn't start this blog post. Thankfully my lights came on a bit earlier than usual! What are Lists? They're a, well, list! It's very well named. It's stored in a variable with square brackets [] and separated by commas, and you can put many data types in it!  This basically just makes it a better way of storing data, instead of using normal brackets to store only one data type.  What can we do with lists? You can modify lists even after they were made, or in other words, mutable.  You can use many functions to add data to the back of the list, remove data, add data in the middle of the list, and you can sort

Taming Text Files in Python!

  I was very frustrated with this one. Introduction Hello there, coders! I was completely surprised, flabbergasted, and astonished, since this lesson was completely different from the others.  I was going to have to do actual work instead of learning things. Frightening, I know. Having to skim through hundreds of lines of text to find that one email can be very frustrating, so python reading the text files can save hours off of your life. Real-Time Reaction of a business man finding this out  Deep Dive So, python (as I've heard), is a very special language as it reads text files and has a function specifically for that (as I found out from Mr. Charles). This all can happen because of one function: open() . It basically, well, opens the text file and you can just do everything you want with it. (p.s. apparently it can open other types of files but I still don't know that... ) The variable the function happens in is called the handle, but I just called it a portal since it was ea

What are Strings? A Beginner's Guide Into Programming Strings in Python

  What is the meaning of a string in coding? Introduction Hello there, coders! This was definitely one of the weirdest concepts I had to understand when I was learning to code.  It is so simple, but I spent an entire evening understand strings! It was ver y embarrassing , but at least I know now!  To hopefully regain my pride, I'm going to explain what strings are in programming as a beginner. What even are strings? Strings are data that you can print out. It's basically text. You might be confused if 9 is a string or an integer (number), but you can just change it! You can type in your code editor to turn a certain variable or a number into a string, in our case 9, by using the str() function. You can put anything in there and it will turn into something you can print out! You can't perform math on the string '9' though. My Experience Aside from the usual data types, I was a bit stumped when I reached the string functions. There were just so many string functions,

Conquering Loops Together: A Beginner's Guide to Loops

Ditch copying and pasting code, there's a better way! Hello there, coders! Today, we're diving into iterations (or loops), which are amazing and powerful tools to tackle repetitive tasks! Understanding Loops Iterations (also known as loops) are these functions that you use in programming to solve problems that take lots of repetition, or loops!  Imagine writing 300 lines of code! That's horrible, but thankfully that isn't a thing due to loops being so efficient at doing repetitive things  There are two types of loops that I know right now in Python, being the for loops and the while loops. Y ou know, loops are like those circular mazes where you have to keep going in circles until you reach the end. While and for Loops While loops are loops that keep executing the code over and over again until a certain condition is met.  It's like a dog keeping a house safe, just like how the code after the loops can only be executed after the requirement is passed. It's also

The Beginning

  Coding was always something I was interested in. Introduction I used to be super interested in coding as a kid, because who wouldn't want to make games, create web pages? I obviously signed up for coding tuition when I was around 10, and just could not keep up at all. The teacher was fine, but I guess I just got bored trying to understand and remember the "functions". Recently, I decided to change this, by trying to learn coding again. I still have some basic knowledge for coding, for example loops, conditionals, data types, but other than that, I just forgot everything. After this, I found this incredible website called freecodecamp.org . If you're learning to code, which I think you are doing since you're reading this, you'll probably find this website to be incredibly useful. Other than that, I realized that, "I could probably help some future coding beginners if they saw a blog from a person learning to code." and I set up this blog. I really h