Answer:
What does Bob [1] return?
What about Bob[-2]?
What about Bob[1:-1]?
How to get the length of Bob?
Explanation:
Well according to the name of the function, I would say <span>A) the mean value of a set of numbers</span>
Answer:
a string
Explanation:
bcz that's the only answer
Answer:
The function is as follows:
def number_of_pennies(dollars,pennies=0):
return dollars*100+pennies
Explanation:
This defines the function
def number_of_pennies(dollars,pennies=0):
This returns the number of pennies
return dollars*100+pennies
<em>Note that, if the number of pennies is not passed to the function, the function takes it as 0</em>