Need help with Python questions please. Thanks in advance. 15. Suppose the follo
ID: 3914956 • Letter: N
Question
Need help with Python questions please. Thanks in advance.
15.
Suppose the following statement is in a program: price = 99. After this statement executes, the price variable will reference a value of this data type.
16.
This built-in function can be used to convert the passed in argument to an int.
28.
An object, similar to a list, contains a sequence of values that can be iterated over with something like a loop is called a __________.
group
class
___________ is the process of validating input given to a program. If the input is invalid, the program should discard it and prompt the user to enter the correct data.
32.
The __________ statement tells a loop to stop with the current iteration and start again at the top of the loop.
currencyExplanation / Answer
--------------------------------------------------------------------------------------
Q15
int
Q16
int()
Q28
iterable
Q31
input validation
32
repeat