随笔记录方便自己和同路人查阅。
#------------------------------------------------我是可耻的分割线-------------------------------------------
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')
运行结果: