63.6k views
5 votes
In Python, how can you check if dairy is present in the user-inputted string?

a) Use the check(dairy) function.
b) Check if dairy in input_test string.
c) Run the is_dairy() function.
d) Use the search(dairy) function.

1 Answer

3 votes

Final answer:

To check if the word "dairy" is present in a user-inputted string in Python, you can use the in keyword.

Step-by-step explanation:

To check if the word "dairy" is present in a user-inputted string in Python, you can use the in keyword. The correct option is b) Check if dairy in input_test string.

  1. Define a variable to store the user-inputted string.
  2. Use the in keyword to check if "dairy" is present in the string.
  3. If "dairy" is present, the expression will evaluate to True.
  4. If "dairy" is not present, the expression will evaluate to False.
User Taknok
by
7.6k points