Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Fri Apr 20 14:47:42 2018
  4.  
  5. @author: mustaqim
  6. """
  7.  
  8. file = open('genbank.txt').read()
  9.  
  10.  
  11. #location = file.find('AUTHORS')
  12. #print(file.count('AUTHORS'), location)
  13.  
  14.  
  15. store = file[568:654]
  16. authors_string = store.replace("and\n", "")
  17.  
  18. print(authors_string)
  19.  
  20.  
  21.  
  22. #Total_words = file.split()
  23. #"len (set (data))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement