zoukankan      html  css  js  c++  java
  • 《Python for Beginners》学习笔记(2)

    《Python for Beginners》为LearnStreet上的Python入门课程。本节主要学习内容为字符串

    一、基本概念
    1. Indexing - References a specific element of a sequence. The first element in a sequence is found at the index 0. To use a single element, call it with [], like this: variable_name[index].
    首元素的索引值为0。

    2. Negative Indexing - This allows you to reference values starting with the last element in a sequence. Count backwards from the end, starting with the index variable_name[-1].
    负数索引值表示从末尾元素开始从后向前数的索引值,末尾元素从variable_name[-1]开始。

    3. Slicing - Slicing allows you to use a particular subset of elements in a sequence. The format for slicing is variable_name[x:y] , where it goes from the xth element and up to (but not including) the yth element.
    variable_name[x:y]表示从第x个元素到第y个元素(不含第y个元素)之间的元素序列。

    4. Membership - uses the "in" operator to check if a string is found within a larger string.
    使用in操作符检测一个字符串是否属于另一个大字符串。

    5. A function is basically a way to give several lines of code to one variable name. When the function is called, all of the code in the function is run.
    函数即将多行代码赋予一个变量名,调用该函数就执行函数中的代码。

    二、编程练习
    1. 字符串合并(串联)
    >teach = "Learn"
    >teach = teach + "Street"
    >teach
    =>LearnStreet
    (注:=>后面为输出结果)

    2. 负索引值
    >py = "python"
    >py[-2]
    => 'o'

    3. 字符串切片
    >w = "watermelon"
    >w[0:5]
    => 'water'

    4. 字符(串)检索
    >"i" in "team"
    => False

    5.使用len()函数计算字符串长度
    >len("hello")
    => 5

    >len(phrase)
    => 184
    (注:phrase为已声明过的字符串变量)

    6.小测验
    在字符串变量book所包含的字符串的前半部分中检索是否含有"peanut"字符串。

    >"peanut" in book[0:(len(book)/2)]
    => True

    (本文完)

  • 相关阅读:
    配置win 10 邮件 账户同步,适用所有邮件商(QQ,189等)
    OBS 捕获显示器黑屏解决办法(已解决,win10)
    备份,基于规则行业分类
    layui 两级表头 代码观赏
    java 保存 json 格式文件代码函数,可直接使用
    layui 二级表头 示例代码
    python 处理文件路径(已知路径,获得后缀,文件名称)
    从Infinity Fabric到Infinity Architecture
    Turing Award 2020-奠定了编译器设计的基础
    Understanding Intel Ice Lake Processor
  • 原文地址:https://www.cnblogs.com/geekham/p/2944926.html
Copyright © 2011-2022 走看看