diff --git a/Day-03/keywords.md b/Day-03/keywords.md index 97abb5ef..1cb6f60d 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. + diff --git a/Day-06/01-Notes/Bitwise Operators.md b/Day-06/01-Notes/Bitwise Operators.md index bd6141f6..79164f87 100644 --- a/Day-06/01-Notes/Bitwise Operators.md +++ b/Day-06/01-Notes/Bitwise Operators.md @@ -29,4 +29,6 @@ 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 +``` + +