zoukankan      html  css  js  c++  java
  • Python学习笔记字符串操作之startswith()和endswith()方法,检查开始和结束位置

     随笔记录方便自己和同路人查阅。

    #------------------------------------------------我是可耻的分割线-------------------------------------------

      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')
    

      运行结果:

  • 相关阅读:
    网页制作
    线性表
    学习进度表
    我是一只IT小小鸟读后感
    Git分支管理(一)
    家庭因你而不同
    Mysql循环insert数据
    IDEA,右边栏不显示maven解决方案
    Linux定时清理日志脚本
    JAVA的夸平台特性的优势——工厂在线生产信息采集项目
  • 原文地址:https://www.cnblogs.com/lirongyang/p/9568289.html
Copyright © 2011-2022 走看看