Complete the code to create a quarters to dollars program. …
Complete the code to create a quarters to dollars program. It will not round. For example, if the function is passed in 9 for the number of quarters, it returns 2.25. Note: fill in the blanks only. Do not retype the code. def quarters_to_dollars([n]) return(n [div] 4) print(quarters_to_dollars(9))
Read Details