Which statement correctly saves the number of items in the v
Which statement correctly saves the number of items in the variable quantity?
| 
 | |||
| 
 | |||
| 
 | |||
| 
 | 
Solution
Answer: quantity = int(userInput) this statement saves the number of items in the variable quantity.
userInput = input(\"Please enter the quantity:\")
quantity = int(userInput)

