Answers for "Write a python program to check if the word 'orange' is present in the "This is orange juice"."

0

Write a python program to check if the word 'orange' is present in the "This is orange juice".

a = "This is orange juice"
print ('orange' in a.split())
Posted by: Guest on June-16-2021

Code answers related to "Write a python program to check if the word 'orange' is present in the "This is orange juice"."

Python Answers by Framework

Browse Popular Code Answers by Language