Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #!/usr/bin/python
  2. import re
  3. cfile=file("./point.c","r")
  4.  
  5. for line in cfile.readlines():
  6. #print line,
  7. re.search("[A-Za-Z]",line)
  8.  
  9.  
  10. cfile.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement