Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Day-03/keywords.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
26. **nonlocal**: It is used to declare a variable as nonlocal, which allows modifying a variable in an enclosing (but non-global) scope.

4 changes: 3 additions & 1 deletion Day-06/01-Notes/Bitwise Operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```
```