Skip to content

Commit f0f76c9

Browse files
change variable 'x' to 'x_val'
It's good to emphasise the use of variable names that are more descriptive. One letter variables may provide room for errors in longer scripts.
1 parent c72ec46 commit f0f76c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/01-numpy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ weight_kg = 55
3838
{: .python}
3939

4040
A variable is just a name for a value,
41-
such as `x`, `current_temperature`, or `subject_id`.
41+
such as `x_val`, `current_temperature`, or `subject_id`.
4242
Python's variables must begin with a letter and are [case sensitive](reference.html#case-sensitive).
4343
We can create a new variable by assigning a value to it using `=`.
4444
When we are finished typing and press Shift+Enter,

0 commit comments

Comments
 (0)