nmi*_*els 23 python coding-style
首先,我在PEP 8中找不到答案.这并不意味着它不在那里.随意指点我.
你更喜欢哪种风格?
第一个:
if spam:
# Do stuff.
return eggs
else:
# Maybe do other stuff.
return parrots
Run Code Online (Sandbox Code Playgroud)
或第二个:
if spam:
# Do stuff.
return eggs
# Maybe do other stuff.
return parrots
Run Code Online (Sandbox Code Playgroud)