Answers for "python divide all values in list"

0

python divide all values in list

numbers = [1, 2, 3]

quotients = []

for number in numbers:

    quotients.append(number / 2)
Posted by: Guest on May-17-2021

Code answers related to "python divide all values in list"

Python Answers by Framework

Browse Popular Code Answers by Language