from parse_bible import bible, books
word_to_find = raw_input ("Enter a word you wish to find the first occurrence of: ")
found = False
for book in books:
chapter_num = 1
for chapter in bible[book]:
verse_num = 1
for verse in chapter:
if word_to_find in verse and not found:
print "First mention of {0} is in {1} {2}:{3}".format(word_to_find, book, chapter_num, verse_num)
found = True
verse_num = verse_num + 1
chapter_num = chapter_num + 1