Skip to content

Commit edfba36

Browse files
committed
Completed Python Beginner 'use of _' answer
1 parent 0cc2ed6 commit edfba36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,7 @@ Shortest way is <code>str[::-1]</code> but not the most efficient.
17051705
<summary>What _ is used for in Python?</summary><br><b>
17061706

17071707
1. Translation lookup in i18n
1708-
2. Hold the result of the last executed expression or statement
1708+
2. Hold the result of the last executed expression or statement in the interactive interpreter.
17091709
3. As a general purpose "throwaway" variable name. For example: x, y, _ = get_data() (x and y are used but since we don't care about third variable, we "threw it away").
17101710
</b></details>
17111711

0 commit comments

Comments
 (0)