I have a program using GUI elements and returns the error
cannot concatenate 'str' and 'instance' objects
The Code is:
def PeopleSearch():
query = SearchTerm
query = ('what is '+ query)
string = ("<center><font size = 14> " + query + ' </font></center><br><img src =picture')
j = 0
try:
gs = GoogleSearch(query)
gs.results_per_page = 100
results = gs.get_results()
The indentations have been changed. Hmm. SearchTerm is basically from a textbox.