1、打开JUPYTER NOTEBOOK,新建一个PY文档。
2、"You are the king.".startswith("You")运用startswith,我们可以判断字符串句子里面第一个单词是否为指定单词。
3、"You are the king.".startswith("you")但是注意大写小写,因为大写和小写会被判定为不一样。
4、"You are the king.".startswith("Y")除了单词以后,还可以判断字母。
5、"123321 is number".startswith("123")除了字母以外,字符串里的数字也是可以判断的。
6、"123321 is number".startswith(123)但是进行判断的时候要注意书写格式。
7、"You are the king.".endswith("king.")除了判断前面,endswith则是判断后面的部分。
8、"You are the king.".endswith(" king.")如果指定有带空格,那么空格也是可以判断进去的。
9、"You are the king.".endswith("king")但是要非常小心一个句子里面是否有句号逗号等。
10、"You are the king.".startswith("Y", 0)"You are the king.".startswith("Y", 1)"You are the king.".startswith("You", 0)为了方便,我们还可以设置判断第几个字母或者单词为指定的数据。
11、"You are the king.".startswith("are", 0, 10)"You are the king.".startswith("are", 4, 10)也可以用范围来进行判断,但是起点一定要是一样的。