Adherent
is a variable, and your first line sets the value to "a person who follows or upholds a leader, cause, etc.; supporter; follower."
word
is also a variable, the value being provided by the user.
print()
prints the value that a variable stores. If you want the user to be able to select a word to define you'll need a dictionary of words.
words = {
"Adherent": "a person who follows or upholds a leader, cause, etc.; supporter; follower.",
}
The first value ("Adherent") is the key. It is associated with the second string.
A dictionary works like and list except in a list values are accessed by their index. In a dictionary values are accessed by their key.
So:
words = {
"Adherent": "a person who follows or upholds a leader, cause, etc.; supporter; follower.",
}
word = raw_input("Word: ")
print words[word] #this is equivalent to words["Adherent"] if the user inputs "Adherent"
Just a sidenote, objects and variables generally should start with lowercase letters.