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