From 58896ae6f01f2e566e9989d05997387a121d3e3c Mon Sep 17 00:00:00 2001 From: Abhilash DR <159617138+Abhipammu123@users.noreply.github.com> Date: Mon, 14 Oct 2024 20:31:58 +0530 Subject: [PATCH 1/4] Update keywords.md --- Day-03/keywords.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Day-03/keywords.md b/Day-03/keywords.md index 97abb5ef..be7c1791 100644 --- a/Day-03/keywords.md +++ b/Day-03/keywords.md @@ -54,4 +54,5 @@ Here are some important Python keywords: 25. **global**: It is used to declare a global variable within a function's scope. -26. **nonlocal**: It is used to declare a variable as nonlocal, which allows modifying a variable in an enclosing (but non-global) scope. \ No newline at end of file +26. **nonlocal**: It is used to declare a variable as nonlocal, which allows modifying a variable in an enclosing (but non-global) scope. +27. **Python local**: it is used write a program with `x`. From bd3657c5d2c532cb82ce4504b2634285e190343d Mon Sep 17 00:00:00 2001 From: Abhilash DR <159617138+Abhipammu123@users.noreply.github.com> Date: Mon, 14 Oct 2024 20:32:33 +0530 Subject: [PATCH 2/4] Update keywords.md --- Day-03/keywords.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Day-03/keywords.md b/Day-03/keywords.md index be7c1791..1cb6f60d 100644 --- a/Day-03/keywords.md +++ b/Day-03/keywords.md @@ -55,4 +55,4 @@ Here are some important Python keywords: 25. **global**: It is used to declare a global variable within a function's scope. 26. **nonlocal**: It is used to declare a variable as nonlocal, which allows modifying a variable in an enclosing (but non-global) scope. -27. **Python local**: it is used write a program with `x`. + From 02553b76a4509b6621c873ed085f924223760a74 Mon Sep 17 00:00:00 2001 From: Abhilash DR <159617138+Abhipammu123@users.noreply.github.com> Date: Mon, 14 Oct 2024 21:58:03 +0530 Subject: [PATCH 3/4] Update Bitwise Operators.md --- Day-06/01-Notes/Bitwise Operators.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Day-06/01-Notes/Bitwise Operators.md b/Day-06/01-Notes/Bitwise Operators.md index bd6141f6..eaa6a357 100644 --- a/Day-06/01-Notes/Bitwise Operators.md +++ b/Day-06/01-Notes/Bitwise Operators.md @@ -29,4 +29,12 @@ result = a & b # Result: 0001 (Decimal: 1) x = 10 # Binary: 1010 y = 7 # Binary: 0111 result = x | y # Result: 1111 (Decimal: 15) -``` \ No newline at end of file +``` + +### Bitwise NOR + +```python +x = 10 # Binary: 1010 +y = 7 # binary: 0111 +result =x/y +``` From 4defe1f7dac02f5d55c24a21d328c03d0e963a38 Mon Sep 17 00:00:00 2001 From: Abhilash DR <159617138+Abhipammu123@users.noreply.github.com> Date: Mon, 14 Oct 2024 21:58:42 +0530 Subject: [PATCH 4/4] Update Bitwise Operators.md --- Day-06/01-Notes/Bitwise Operators.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Day-06/01-Notes/Bitwise Operators.md b/Day-06/01-Notes/Bitwise Operators.md index eaa6a357..79164f87 100644 --- a/Day-06/01-Notes/Bitwise Operators.md +++ b/Day-06/01-Notes/Bitwise Operators.md @@ -31,10 +31,4 @@ y = 7 # Binary: 0111 result = x | y # Result: 1111 (Decimal: 15) ``` -### Bitwise NOR -```python -x = 10 # Binary: 1010 -y = 7 # binary: 0111 -result =x/y -```