Skip to content

Commit

Permalink
Update basics.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasanthabalaji01 authored Feb 6, 2025
1 parent bd6cddf commit a38b96b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/code/python/basics/basics.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Basic syntax

Let's go through Python's basic syntax
Let's go through Python's basic syntax ==

### 1. Statements and Indentation
Python uses indentation to denote code blocks. For example:
Expand Down Expand Up @@ -1011,4 +1011,4 @@ student.update({"grade": "A", "status": "active"})
- We check for the presence of the key `"age"` in the dictionary using the `in` keyword.
- We merge additional key-value pairs into the dictionary using the `update()` method.
Dictionaries are powerful data structures in Python for storing and retrieving key-value pairs efficiently. Understanding how to create, access, modify, and use dictionaries is essential for writing effective and concise Python code.
Dictionaries are powerful data structures in Python for storing and retrieving key-value pairs efficiently. Understanding how to create, access, modify, and use dictionaries is essential for writing effective and concise Python code.

0 comments on commit a38b96b

Please sign in to comment.