CS 161: Exploring Algorithms, Computers, and Python

Introduction – Why Should You Care?

Algorithms, computers, and programming languages—the trifecta of modern computing. If you’ve ever followed a recipe, applied a filter to a photo, or wondered why your laptop suddenly sounds like a jet engine, congratulations! You’ve encountered algorithms and computing in action. But how do they work, and why do we need to learn about them? That’s what this article is all about.

Key Takeaways:

  • Understand what an algorithm is and why it’s crucial in computing.

  • Learn about the core components of a computer and how they work together.

  • Explore programming languages, including Python, and why we use them.

  • Discover how to interact with Python through REPLs and interactive coding.

Algorithms: The Blueprint of Computing

What is an Algorithm?

An algorithm is a set of step-by-step instructions designed to perform a task. Think of it like a recipe—you follow a sequence of steps to bake a cake, just as a computer follows a sequence of operations to process data.

Why Do Algorithms Matter?

  • They provide a structured way to solve problems.

  • They work for all cases, not just one specific instance (e.g., a photo filter should work on any image, not just one).

  • Every program you run, from social media apps to self-driving cars, relies on carefully designed algorithms.

💡 Takeaway: Learning algorithms helps you think like a programmer—breaking problems down into logical steps to find solutions.

Computers: The Machines That Follow Instructions

We take computers for granted, but they are one of the most revolutionary inventions of all time. Unlike single-purpose tools, modern computers can be programmed to do virtually anything—assuming they have the right instructions.

Basic Components of a Computer

  1. CPU (Central Processing Unit) – The "brain" of the computer that executes instructions.

  2. RAM (Random Access Memory) – A temporary workspace where active programs run. RAM clears when the computer is turned off.

  3. Secondary Storage – Hard drives, SSDs, USB drives—where data is stored permanently.

💡 Takeaway: A computer follows your instructions exactly. If something breaks, well... it’s probably human error. (But hey, that’s how we learn!)

Computer Languages: Speaking to Machines

Why Do We Need Programming Languages?

Computers only understand machine language (1s and 0s). Writing directly in binary would be painfully tedious, so we use high-level programming languages to make things easier.

Compiled vs. Interpreted Languages

  • Compiled languages (e.g., C, Java): Translated into machine code before execution.

  • Interpreted languages (e.g., Python, JavaScript): Translated as they run.

💡 Takeaway: High-level languages exist to make programming accessible to humans—because let’s face it, writing code in 1s and 0s would be a nightmare.

Python: The Friendly Programming Language

What is Python?

Python was created by Guido van Rossum in 1991 and named after the comedy group Monty Python (not the snake). It is known for its simplicity, readability, and versatility.

Why Use Python?

  • Easy to learn – The syntax is clean and intuitive.

  • Widely used – From web development to AI, Python is everywhere.

  • Great for beginners – You can focus on logic rather than complex syntax.

💡 Takeaway: Python is an ideal first programming language—less scary, more fun.

Interactive Mode and REPLs: Playing with Python

What is a REPL?

A Read-Eval-Print Loop (REPL) allows you to execute Python commands interactively.

How It Works:

  • Type a command.

  • Press Enter.

  • See the result instantly.

Example:

>>> print("Hello, world!")

Hello, world!

Try experimenting by typing different expressions into the Python REPL. It’s a great way to learn by doing.

💡 Takeaway: The best way to learn programming? Break things, fix them, and experiment!

Reflection: What We Learned

  • Algorithms are step-by-step instructions for solving problems.

  • Computers process information through CPUs, RAM, and storage.

  • Programming languages make it easier to communicate with computers.

  • Python is an easy-to-learn, versatile language.

  • REPLs let you test code interactively, making learning fun and intuitive.

Conclusion & Call to Action

Now that you’ve got the basics down, it’s time to start coding! Try running a simple Python command in a REPL, or better yet—write a basic algorithm of your own.

💡 Question for You: What’s the first algorithm you’d like to implement? Drop a comment—I’d love to hear your ideas!

Previous
Previous

CS 161 - Module 2: Print Statements & Types

Next
Next

CS 161: Mastering Intro to Programming - Problem-Solving