w

 

http://legacy.python.org/dev/peps/pep-0008/

 

Yes: if foo.startswith('bar'):
No:  if foo[:3] == 'bar':

 

相关文章: