qobjects = [
{
question: "The official SciPy library is imported like this:",
options: [
"import sp",
"import sci",
"import scipy"
],
correct: 2
},
{
question: "What is a correct syntax for checking the version of the SciPy library?",
options: [
"print(scipy.get_ver())",
"print(scipy.__version__)",
"print(scipy.version())"
],
correct: 1
},
{
question: "What does SciPy stand for??",
options: [
"Scales in Python",
"Schemes in Python",
"Scientific Python"
],
correct: 2
}
]