From 712fd70694062aa94f4e04be58bbea8217068936 Mon Sep 17 00:00:00 2001 From: AMG1995 <39673621+AMG1995@users.noreply.github.com> Date: Tue, 31 Oct 2023 14:40:09 +0400 Subject: [PATCH] Update 4-print_float.py --- 4-print_float.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4-print_float.py b/4-print_float.py index 39b022c..602da8e 100644 --- a/4-print_float.py +++ b/4-print_float.py @@ -1,3 +1,3 @@ #!/usr/bin/python3 number = 3.14159 -# YOUR CODE GOES HERE. PLEASE REMOVE THIS LINE +print("Float: {:.2f}".format(number))