I want to use dictionary in python of following type
dictionary = {
"Who is Elon Musk":
"Elon Reeve Musk FRS is an American business magnate, investor and engineer. He is the founder, CEO, and lead designer of SpaceX; co-founder, CEO, and product architect of Tesla, Inc.; and co-founder and CEO of Neuralink " ,
"Second Question":
"Second answer"
}
I want to retrieve the answer from question by using above approach.
What is wrong with this approach and what are correct ways of doing it. Also is there any better way than using dictionary to perform above task.