Skip to content

Instantly share code, notes, and snippets.

Created September 16, 2016 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/a2aa5ea5c0cb49516a437b961ab467df to your computer and use it in GitHub Desktop.
Save anonymous/a2aa5ea5c0cb49516a437b961ab467df to your computer and use it in GitHub Desktop.
# bad
ary = [1,2,
30,4,5,6
7,8]
# better
ary = [1, 2,
30, 4,
5, 6,
7, 8]
# better
ary = [1,
2
30,
4,
5,
6,
7,
8]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment