Complete the code to import the speed of light constant from scipy.constants.
from scipy.constants import [1] print(speed_of_light)
The speed of light constant is named speed_of_light in scipy.constants.
Complete the code to print the value of Planck's constant from scipy.constants.
from scipy.constants import [1] print(planck)
The Planck constant is named planck in scipy.constants.
Fix the error in the code to correctly import and print the reduced Planck constant.
from scipy.constants import [1] print(hbar)
The reduced Planck constant is named hbar in scipy.constants.
Fill both blanks to create a dictionary with keys 'c' and 'h' for speed of light and Planck constant values.
from scipy.constants import speed_of_light, planck constants = {'c': [1], 'h': [2] print(constants)
Use the imported names speed_of_light and planck to assign values.
Fill all three blanks to create a dictionary with keys 'c', 'h', and 'hbar' for speed of light, Planck constant, and reduced Planck constant.
from scipy.constants import speed_of_light, planck, hbar constants = {'c': [1], 'h': [2], 'hbar': [3] print(constants)
Assign the correct imported constants to each key in the dictionary.