Найти - Пользователи
Полная версия: Задача по Python
Начало » Центр помощи » Задача по Python
1
LeftCTRL
Прошу помочь в решении данной задачи

Заданы М строк слов, которые вводятся с клавиатуры. Вводится слог (последовательность букв). Удалить данный слог из каждой строки.
LeftCTRL
strings - массив строк 
a - слог
for s in strings:
<-->s.replace(a,"")
Nata
import re
m=input("Enter the number of sentences: ")
li=[]
for i in range(m):
string=raw_input("Enter a line: ")
li.append(string)
slog=raw_input("Enter a string: ")
for i in li:
t=re.sub(slog, '', i)
print t
LeftCTRL
Nata
Огромное спасибо
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB