Computer Science, asked by TeeshaAhuja, 1 year ago

write the output of following:
string="Hello Madam, I love Tutorials"
substring="Madam"
if string.find(substring) !=–1:
print ("Python found the substring!")
else:
print ("Python did NOT find the substring!")

Answers

Answered by govind22tripathi
0

Answer:

Python Found the substring!

Similar questions