I am trying to print out true if there is such letter/word and false if there isn't, but no matter what I type, it's always true.
phr1= raw_input("Enter a phrase or paragraph, and this will check if you have those letters/word in ur paragraph: ")
print "You entered: "+phr1
phr2= raw_input("Check if a word/letter exists in the paragraph: ")
phr2 in phr1
if True:
print "true"
elif False:
print "false"
input("Press enter")
When I run the code:
Enter a phrase or paragraph, and this will check if you have those letters/word in ur paragraph:
hello world
You entered: hello world
Check if a word/letter exists in the paragraph: g
true
Press enter
How is this possible, g dosen't exist, why does it say it does?
phr2 in phr1and store it anywhere, so the following statements don't know anything about whether that check passed or not – nbrooks Jun 17 '12 at 6:34