Answers for "round every item in list python"

4

how to round the values in a list

a_list = [1.234, 2.345, 3.45, 1.45]
round_to_whole = [round(num) for num in a_list]

print(round_to_whole)
Posted by: Guest on September-11-2020

Code answers related to "round every item in list python"

Python Answers by Framework

Browse Popular Code Answers by Language