Skip to content

Commit

Permalink
Prevent line overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
s2t2 authored Sep 10, 2024
1 parent 02863e3 commit 9fc7369
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/notes/python-lang/overview.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,8 @@
"x = x + 10\n",
"print(x)\n",
"\n",
"x += 10 # FYI: += is a shorthand operator equivalent to this = this + that\n",
"# FYI: `this += that` is shorthand for `this = this + that`\n",
"x += 10 \n",
"print(x)"
]
},
Expand Down

0 comments on commit 9fc7369

Please sign in to comment.