Skip to content

Commit 1a678d2

Browse files
authored
Update README.md
1 parent 9fcc946 commit 1a678d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/04-Multiply-Two-Values/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=tATIrAWiLLU"
66

77
Any programming language lets you do basic Math operations like multiplication, division, etc.
88

9-
To multiply 2 values in python, you have to use the asterisk operator like this:
9+
To multiply 2 values in Python, you have to use the asterisk operator like this:
1010

1111
```py
1212
resulting_value = 2 * 3
@@ -18,4 +18,4 @@ In this case, we stored the resulting value of the multiplication into a variabl
1818

1919
1. Please store the result of multiplying 2345 times 7323 in a variable called `variables_are_cool`.
2020

21-
2. Now print the result in the console.
21+
2. Now print the result in the console.

0 commit comments

Comments
 (0)