Variable assignment in programming is the process of storing data in a variable, which is a named space in memory. The principle of variable assignment is straightforward:
- Choose a variable name that meaningfully represents the data it holds.
- Assign it a specific value using an assignment operator, like `=` in most languages.
For instance, when you assign a new string to an already declared variable, like in our task:
```python
str = modifiedString
```
It updates the content of `str` with the new value held by `modifiedString`. This operation makes variables dynamic in that they can hold different data at different times during program execution.
In our example, `str` initially held the value "Tiger", and through assignment, it is updated to "Liger". This demonstrates the flexibility and power of variables in programming, allowing for data changes and manipulation according to the logic of your program.