How good is startswith?

前端 未结 10 449
执笔经年
执笔经年 2021-01-07 19:38

Is

text.startswith(\'a\')  

better than

text[0]==\'a\'  

?

Knowing text is not empty and we a

10条回答
  •  攒了一身酷
    2021-01-07 19:49

    My ideas:

    • startswith can work with any length, can work with empty strings, I prefer this.

    • indexing can only work if the length is specified, cannot work with empty strings.

提交回复
热议问题