From 3dd667d7e9a22b837eaec0932f53402243a7cf74 Mon Sep 17 00:00:00 2001 From: Sakibumumuni Date: Mon, 29 Dec 2025 14:17:29 +0000 Subject: [PATCH] Display density with unit in operators.md Added print statement to display density with unit. --- 03_Day_Operators/03_operators.md | 1 + 1 file changed, 1 insertion(+) diff --git a/03_Day_Operators/03_operators.md b/03_Day_Operators/03_operators.md index 0fcfeb9..22ac681 100644 --- a/03_Day_Operators/03_operators.md +++ b/03_Day_Operators/03_operators.md @@ -174,6 +174,7 @@ print(weight, 'N') # Adding unit to the weight mass = 75 # in Kg volume = 0.075 # in cubic meter density = mass / volume # 1000 Kg/m^3 +print(density, 'Kg/m^3') # Adding unit to the density ```