python Programming Glossary: cond4
Python style: multiple-line conditions in IFs http://stackoverflow.com/questions/181530/python-style-multiple-line-conditions-in-ifs is if cond1 'val1' and cond2 'val2' and cond3 'val3' and cond4 'val4' do_something Isn't very very appealing visually because.. if cond1 'val1' and cond2 'val2' and cond3 'val3' and cond4 'val4' do_something Not very pretty I know Can you recommend.. use if cond1 'val1' and cond2 'val2' and cond3 'val3' and cond4 'val4' do_something Also don't forget the whitespace is more..
|