diff --git a/4-print_float.py b/4-print_float.py index 39b022c..344bd4d 100644 --- a/4-print_float.py +++ b/4-print_float.py @@ -1,3 +1,4 @@ #!/usr/bin/python3 number = 3.14159 -# YOUR CODE GOES HERE. PLEASE REMOVE THIS LINE +print(f"Float: {number:.2f}") +