Answers for "cast as float 2 decimal places"

0

float format decimal places

num = 1.234
print("{:.2f}".format(num))
>> 1.23

print(f"{num:.2f}")
>> 1.23
Posted by: Guest on November-04-2020

Code answers related to "cast as float 2 decimal places"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language