Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. s = "Hello Python!"
  2.  
  3. print('H' in s)
  4. # output : True
  5.  
  6. print('x' in s)
  7. # output : False
  8.  
  9. # for substring
  10. print('Pyt' in s)
  11. # output : True
  12.  
  13. print('abc' in s)
  14. # output : False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement