Guest User

Untitled

a guest
Jan 8th, 2016
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def check(words, index):
  2.         if words[(index-1)].isalpha and words[(index+1)].isalpha:
  3.             return True
  4.         else:
  5.             return False
Advertisement
Add Comment
Please, Sign In to add comment