LangChain - Fundamentals
Given this code snippet, what will be the output?
from langchain import PromptTemplate, LLMChain
prompt = PromptTemplate(template="What is the capital of {country}?")
chain = LLMChain(prompt=prompt)
result = chain.run(country="France")
print(result)