Skip to content

Instantly share code, notes, and snippets.

@griiid
Last active March 18, 2021 13:33
Show Gist options
  • Save griiid/d0bd2d0f706f1df3bd78ac0b395cbda5 to your computer and use it in GitHub Desktop.
Save griiid/d0bd2d0f706f1df3bd78ac0b395cbda5 to your computer and use it in GitHub Desktop.
# 對齊開頭分隔符號
foo = long_function_name(var_one, var_two,
var_three, var_four)
# 要多縮排一次來區分
def long_function_name(
var_one, var_two, var_three,
var_four):
print(var_one)
# 懸掛縮排要多縮排一次
foo = long_function_name(
var_one, var_two,
var_three, var_four)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment