Consider the following code :
import numpy as np
import pandas as pd
L=np.array([10,20])
x=pd (Series ( __________ ) #statement 1
print (x)
output of the above code is:
() 1000
1 8000
dtype: int64
What is the correct statement for the above output in the following statement-1?
(a) d=L*3
(b) data=L**3
(c) L*3
(d) [10.20]**3