Skip to content

Instantly share code, notes, and snippets.

@griiid
Created March 18, 2021 16:06
Show Gist options
  • Save griiid/7bb8f871d8638e9bd5a18d3f38af4919 to your computer and use it in GitHub Desktop.
Save griiid/7bb8f871d8638e9bd5a18d3f38af4919 to your computer and use it in GitHub Desktop.
# 不額外做縮排
if (this_is_one_thing and
that_is_another_thing):
do_something()
# 加入註解,可以在支援語法凸顯的編輯器中將兩者區分開來
if (this_is_one_thing and
that_is_another_thing):
# Since both conditions are true, we can frobnicate.
do_something()
# 再接續行做額外縮排
if (this_is_one_thing
and that_is_another_thing):
do_something()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment