How good is startswith?

前端 未结 10 443
执笔经年
执笔经年 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:48

    text[0]=='a' is good considering performance. Also you need to add validation when you use this.

提交回复
热议问题