We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80499a7 commit 20b3435Copy full SHA for 20b3435
18.11
@@ -0,0 +1,8 @@
1
+#Степанова и Буданова. Сколько t входит в строку
2
+k = 0
3
+a = input()
4
+b = list(a)
5
+for i in range(len(b)):
6
+ if b[i] == "t":
7
+ k = k + 1
8
+print(k)
0 commit comments