Advertisement
Blessing988

Untitled

Feb 11th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def string_theory(word):
  2.     if word[0]=="S" and len(word)>3:
  3.         print(True)
  4.     else:
  5.         print(False)
  6.  
  7. string_theory("See")  #Example
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement