Skip to content

Commit 27c8a04

Browse files
authored
init: python task
1 parent cd0c169 commit 27c8a04

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

43. Python Methods as Expressions.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
'''Найдите символы N и , (запятая) внутри текста в переменной text. Выведите на экран их индексы. Ожидаемый тестами вывод:
2+
3+
Index Of N: 0
4+
Index Of ,: 25
5+
Ваша задача найти эти индексы в строке с помощью метода .find() и вставить в print(), не используя промежуточные переменные. Для разбиения вывода на две строки, вам может понадобится \n'''
6+
7+
text = 'Never forget what you are, for surely the world will not'
8+
9+
# BEGIN
10+
print(f"Index Of N: {text.find('N')}\nIndex Of ,: {text.find(',')}")
11+
# END

0 commit comments

Comments
 (0)