Skip to content

Commit b8de326

Browse files
authored
Merge pull request #14 from arpitHub/main
fixed typo
2 parents 810d6fc + 06dc4e1 commit b8de326

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2024-04-02-python-underscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tags: [python,python_tips]
1111
comments: true
1212
---
1313

14-
We all have seen underscode symbol in Python. One of the most common uses of the underscore is as a placeholder variable. When iterating over a sequence or generating a range of values, there are often situations where the loop variable is not needed. In such cases, Python programmers opt to use _ as a concise way to indicate that the value is irrelevant to the current context.
14+
We all have seen underscore symbol in Python. One of the most common uses of the underscore is as a placeholder variable. When iterating over a sequence or generating a range of values, there are often situations where the loop variable is not needed. In such cases, Python programmers opt to use _ as a concise way to indicate that the value is irrelevant to the current context.
1515

1616
```python
1717
for _ in range(10):

0 commit comments

Comments
 (0)