Browse Source

temporary fix

pull/1954/head
miguel 2 years ago committed by MSilva95
parent
commit
7f576fc2ae
  1. 4
      subjects/devops/numerical_operations/README.md

4
subjects/devops/numerical_operations/README.md

@ -23,7 +23,7 @@ print(numerical_operations.add(2, 2))
print(numerical_operations.subtract(10, 5)) print(numerical_operations.subtract(10, 5))
print(numerical_operations.multiply(3, 4)) print(numerical_operations.multiply(3, 4))
print(numerical_operations.power(3, 3)) print(numerical_operations.power(3, 3))
print(numerical_operations.square(3)) print(numerical_operations.square(3)) # What we want is the square root of the number.
``` ```
```bash ```bash
@ -32,7 +32,7 @@ $ python test.py
5 5
12 12
27 27
9 1.73205080757
$ $
``` ```

Loading…
Cancel
Save