question # 3\nfill in the blank\nfill in the blank in order to convert the users response to a number…

question # 3\nfill in the blank\nfill in the blank in order to convert the users response to a number without a decimal point.\n>>> answer = input(\how many sodas do you want?\)\nhow many sodas do you want? 5\n>>> numberanswer = (answer)
Answer
Explanation:
Step1: Identify the conversion need
The goal is to convert the input (which is a string) to an integer. In Python, the int() function is used to convert a string representing an integer - like value to an actual integer.
Answer:
int