Answers for "round all numbers in list python"

4

round python with 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 all numbers in list python"

Python Answers by Framework

Browse Popular Code Answers by Language