Computer Science, asked by animesharma2405, 4 months ago

Write a Python program that reads input from the keyboard (standard input). The input will consist of some number of lines of text. The input will be terminated by a blank line. The first line will consist of a single word to be interpreted as a pattern, after discarding the new line character. Your program should print every line from the second line onward that contains an occurrence of the pattern. You can assume that the input will have a non-empty pattern line. Recall that for a string s and a pattern p, s.find(p) returns the first position in s where p occurs, and returns -1 if p does not occur in s.

For instance, if the input is the following:

the
"Spot the mistake
in the following argument",
Jack challenged
1+(-1+1)+(-1+1)+... = (1+ -1)+(1+ -1)+...
so therefore,
1 = 0
??

then your program should print the following. Note that the pattern string the is matched by the word therefore.

"Spot the mistake
in the following argument",
so therefore,

Answers

Answered by vijinibu
0

Answer:

I will come in later tomorrow if I have time table for tomorrow and if you I will call after the exam tomorrow to make romantic plans if we can't do that day in time but then I can be in bed at the

Explanation:

I think it will take me to get some of it out and I hope to be there in the afternoon if I don't have time table for this time or tomorrow if I don't have it

Similar questions