Skip to content

Commit cade613

Browse files
committed
[Strings Concept] Update about.md to fix Ukrainian Example
Per PR 3394, fixed the Ukraninian example in the concept `about.md`, to match the corrected on in the exercise `introduction.md`.
1 parent 7446286 commit cade613

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

concepts/strings/about.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,13 @@ This method should be used sparingly, as it is not very performant or easily mai
159159
```python
160160
language = "Ukrainian"
161161
number = "nine"
162-
word = "девять"
162+
word = "дев'ять"
163163

164164
sentence = word + " " + "means" + " " + number + " in " + language + "."
165165

166166
>>> print(sentence)
167167
...
168-
"девять means nine in Ukrainian."
168+
"дев'ять means nine in Ukrainian."
169169
```
170170

171171
If a `list`, `tuple`, `set` or other collection of individual strings needs to be combined into a single `str`, [`<str>.join(<iterable>)`][str-join], is a better option:

0 commit comments

Comments
 (0)