Skip to content

Commit 062fab2

Browse files
committed
fix typo
1 parent e831de3 commit 062fab2

File tree

1 file changed

+1
-1
lines changed
  • modules/31-advanced-strings/70-slices/ru

1 file changed

+1
-1
lines changed

modules/31-advanced-strings/70-slices/ru/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ print(year) # => 2034
3232
value = 'code-basics'
3333

3434
print(value[5:11]) # => basics (с 5 по 10 индекс)
35-
print(value[0:7]) # => code-ba (с 0 по 7 индекс)
35+
print(value[0:7]) # => code-ba (с 0 по 6 индекс)
3636
print(value[2:6]) # => de-b
3737
print(value[:4]) # => code
3838
print(value[5:]) # => basics

0 commit comments

Comments
 (0)