python判断字符串是否以指定的字符串结尾的函数endswith
python判断字符串是否以指定的字符串结尾的函数endswith
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/21 功能描述:python判断字符串是否以指定的字符串结尾的函数endswith """ name = input('What is your name? ') if name.endswith('Yin'): print('Hello, Mr. Yin')
输出:
What is your name? Xia Yin
Hello, Mr. Yin
以上代码在python3.9环境测试通过。
相关文章