随笔记录方便自己和同路人查阅。
#------------------------------------------------我是可耻的分割线-------------------------------------------
startswith()和endswith()方法返回True,如果它们所调用的字符串以该方法传入的字符串开始或结束。
否则,方法返回False。
#------------------------------------------------我是可耻的分割线-------------------------------------------
1、startswith()方法,示例代码:
#
# -*- coding:utf-8 -*-
# Autor: Li Rong Yang
#被调用字符串开始位置是,startswith()方法传入的值
startswith_name = 'hello world!'
if startswith_name.startswith('hello'):
print('True')
else:
print('False')
#被调用字符串开始位置不是,startswith()方法传入的值
startswith_name = 'hello world!'
if startswith_name.startswith('world'):
print('True')
else:
print('False')
运行结果:

2、endswith()方法,示例代码:
#
# -*- coding:utf-8 -*-
# # Autor: Li Rong Yang
#被调用字符串结束位置是,endswith()方法传入的值
startswith_name = 'hello world!'
if startswith_name.endswith('world!'):
print('True')
else:
print('False')
#被调用字符串结束位置不是,endswith()方法传入的值
startswith_name = 'hello world!'
if startswith_name.endswith('hello'):
print('True')
else:
print('False')
运行结果:

本文详细介绍了Python中字符串的startswith()和endswith()方法的使用方式,通过示例代码展示了如何判断字符串是否以特定子串开头或结尾,为初学者提供了清晰的指导。

2387

被折叠的 条评论
为什么被折叠?



