Browse Source

docs(concat_string): rephrase usage and description

pull/1779/head
eslopfer 1 year ago
parent
commit
2459ecb941
  1. 10
      subjects/devops/concat_string/README.md

10
subjects/devops/concat_string/README.md

@ -9,7 +9,7 @@ Create a file `concat_string.py` that contains a function `concat` which takes i
### Usage
Here is an example of how to use the `concat` function:
Here is an example of how to use the `concat` function in a `test.py` script:
```python
import concat_string
@ -18,13 +18,15 @@ string2 = "World"
print(concat_string.concat(string1, string2))
```
This will output:
Below is the expected output:
````
```console
$ python3 test.py
Hello World
Hello, World
$
```
````
### References

Loading…
Cancel
Save