From 6145d6177aa0fc2cb2b05f9ff1f23ea7167ca9ca Mon Sep 17 00:00:00 2001 From: AnkitL7 <88607419+AnkitL7@users.noreply.github.com> Date: Sun, 29 Aug 2021 10:13:58 +0530 Subject: [PATCH] just some addition of comments --- 01_Day_Introduction/helloworld.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01_Day_Introduction/helloworld.py b/01_Day_Introduction/helloworld.py index cfded3c68..78cd826d4 100644 --- a/01_Day_Introduction/helloworld.py +++ b/01_Day_Introduction/helloworld.py @@ -6,8 +6,8 @@ print(2 * 3) # multiplication(*) print(3 / 2) # division(/) print(3 ** 2) # exponential(**) -print(3 % 2) # modulus(%) -print(3 // 2) # Floor division operator(//) +print(3 % 2) # modulus(% will give the remainder of the operation) +print(3 // 2) # Floor division operator(// will print only the integar value) # Checking data types