Which of the following code blocks extracts the value for column sqft from the first row of DataFrame storesDF?
Which of the following code blocks extracts the value for column sqft from the first row of DataFrame storesDF?
To extract the value for column sqft from the first row of DataFrame storesDF, you use the first() method to get the first row and then access the sqft attribute directly. The correct syntax for this operation is storesDF.first().sqft.
E is correct