From 6da7dd248a9e6b46cb82f97d82a19f63f145ba75 Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Wed, 5 Nov 2025 14:30:05 -0700 Subject: Added spectroscopy problem --- tutorials/module_1/basics_of_python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tutorials/module_1') diff --git a/tutorials/module_1/basics_of_python.md b/tutorials/module_1/basics_of_python.md index 776af44..80b05d3 100644 --- a/tutorials/module_1/basics_of_python.md +++ b/tutorials/module_1/basics_of_python.md @@ -91,7 +91,7 @@ The comprehensive table below show all built-in data types available in python. ## Variables -A **variable** in Python is a name that stores a value, allowing you to use and manipulate data efficiently. +A **variable** in Python is a name that stores a value, allowing you to use and manipulate data efficiently. In mathematics it is common to use a single letter to represent a variable, in programming descriptive variables are used to make it easier for whoever is reading the code to understand what is going on. You may remember what `x` is when writing the code, but when you revise it in the future, it may not be easy to remember what `x` represented in your 200 lines of code. In engineering it is encourage to use descriptive (such as `velocity_data`) or common convention symbols (`omega` for angular velocity). For this section arbitrary variables are used for the purpose of showing how variables works. #### Declaring and Assigning Variables -- cgit v1.2.3