Notebook
# WRONG - Stuff on first line forbidden lfunc = long_function_name(var_one, var_two, var_three, var_four) # CORRECT - Aligned with opening delimiter lfunc = long_function_name(var_one, var_two, var_three, var_four)
# WRONG spam( ham[ 1 ], { eggs: 2 }, [ ] ) #CORRECT spam(ham[1], {eggs: 2}, [])
# WRONG spam (1) dict ['key'] = list [index] # CORRECT spam(1) dict['key'] = list[index]