WillWang-X
9/9/2017 - 5:45 PM

used to add term between ** and **

used to add term between ** and **

'''
1. Input 
s =
ad hoc query
analytical database
2. Output
** ad hoc query **
** analytical database **
'''

def term_standardize(s):
    terms = s.split('\n')
    terms = filter(None, terms)
    for term in terms:
        print '** ' + term + ' **'   
term_standardize(s)