Substring

Report a typo

Write a program that takes two strings, checks whether the first string contains the second one and prints the result of the membership test.

The variables for both input strings have already been defined.

Sample Input 1:

Big Brother watches you
Father

Sample Output 1:

False
Write a program in Python 3
a = input()
b = input()
# run the membership test below
___

Create a free account to access the full topic