This package will help you to anwer questions like:

In [6]:
question_list = '''How disciplines cite other disciplines?
How boundaries of disciplines are demarcated?
What researchers can be considered as part of disciplines?
What is the difference between fields, communities of practice and disciplines?
How use of concepts relate to disciplines.
What are the styles of disciplines?
How citation practices migrate from discipline to discipline?
When disciplines emerge?
When disciplines grow?
When disciplines die?
What disciplines are more to related methods?
What disciplines are more related to field of research?
How data is used in different disciplines?
What data is used in different disciplines?
What software is used in different disciplines?
What software migrates from discipline to discipline?
What are mobility trends of discipline to discipline?
What acronims are considered as standard by disciplines?
At what point use of concept disperses?
At what point use of concept merges / is synthesized?
What type of media is used for disciplines to interact?
Which discipline has most subdisciplines?
How disciplines negotiate boundaries?
How disciplines build bridges?
What disciplines interact with disciplines that are far away?
What disciplines have most simple career paths?

Who are main sociologists?
How many subdisciplines are there in sociology?
How many disciplines are there?
how many disciplines according to Krishnan are there?
hhat were the main events in development of sociology?
what are the concepts that act as boundary objects between sociology and political sciences?
what were the publications that marked schizma between economics and sociology?
what disciplines are currently emerging?
what text is most dense with discipline names?

What data has to retrieved?
What are types of data?
How to implement sources?
Is supervised machine learning able to repeat procedures done to implement articles?
Is it possible to link structure of implemented theories to theory text itself?
What articles are easiest to implement?
Is it possible to do implementation based only on?
Are there articles that are references only by one discipline?
How referencing an article goes from one discipline to another?
How style of refencing article?
Is it possible to match journal's about us with content of articles published only with use of NLTK tools?'''

In [7]:



Out[7]:
['How disciplines cite other disciplines?',
 'How boundaries of disciplines are demarcated?',
 'What researchers can be considered as part of disciplines?',
 'What is the difference between fields, communities of practice and disciplines?',
 'How use of concepts relate to disciplines.',
 'What are the styles of disciplines?',
 'How citation practices migrate from discipline to discipline?',
 'When disciplines emerge?',
 'When disciplines grow?',
 'When disciplines die?',
 'What disciplines are more to related methods?',
 'What disciplines are more related to field of research?',
 'How data is used in different disciplines?',
 'What data is used in different disciplines?',
 'What software is used in different disciplines?',
 'What software migrates from discipline to discipline?',
 'What are mobility trends of discipline to discipline?',
 'What acronims are considered as standard by disciplines?',
 'At what point use of concept disperses?',
 'At what point use of concept merges / is synthesized?',
 'What type of media is used for disciplines to interact?',
 'Which discipline has most subdisciplines?',
 'How disciplines negotiate boundaries?',
 'How disciplines build bridges?',
 'What disciplines interact with disciplines that are far away?',
 'What disciplines have most simple career paths?',
 '',
 'Who are main sociologists?',
 'How many subdisciplines are there in sociology?',
 'How many disciplines are there?',
 'how many disciplines according to Krishnan are there?',
 'hhat were the main events in development of sociology?',
 'what are the concepts that act as boundary objects between sociology and political sciences?',
 'what were the publications that marked schizma between economics and sociology?',
 'what disciplines are currently emerging?',
 'what text is most dense with discipline names?',
 '',
 'What data has to retrieved?',
 'What are types of data?',
 'How to implement sources?',
 'Is supervised machine learning able to repeat procedures done to implement articles?',
 'Is it possible to link structure of implemented theories to theory text itself?',
 'What articles are easiest to implement?',
 'Is it possible to do implementation based only on?',
 'Are there articles that are references only by one discipline?',
 'How referencing an article goes from one discipline to another?',
 'How style of refencing article?',
 "Is it possible to match journal's about us with content of articles published only with use of NLTK tools?"]

In [14]:
from nltk import word_tokenize
tokenized_question_list = [word_tokenize(question) for question in question_list.split('\n')]

In [15]:
tokenized_question_list[0:5]


Out[15]:
[['How', 'disciplines', 'cite', 'other', 'disciplines', '?'],
 ['How', 'boundaries', 'of', 'disciplines', 'are', 'demarcated', '?'],
 ['What',
  'researchers',
  'can',
  'be',
  'considered',
  'as',
  'part',
  'of',
  'disciplines',
  '?'],
 ['What',
  'is',
  'the',
  'difference',
  'between',
  'fields',
  ',',
  'communities',
  'of',
  'practice',
  'and',
  'disciplines',
  '?'],
 ['How', 'use', 'of', 'concepts', 'relate', 'to', 'disciplines', '.']]

In [ ]: