当前位置:   article > 正文

python学习笔记 -- 字符串

python学习笔记 -- 字符串

目录

一、输出字符串的格式

二、字符串的一些函数

1、len函数:字符串长度

2、查找字符所在位置index

3、某字符在字符串中的个数count

4、字符切片

对字符串进行翻转 -- 利用步长

5、修改大小写字母:

6、判断开头和结尾

7、拆分字符串

一、输出字符串的格式

%s - String (or any object with a string representation, like numbers)

%d - Integers

%f - Floating point numbers

%.<number of digits>f - Floating point numbers with a fixed amount of digits to the right of the dot.

%x/%X - Integers in hex representation (lowercase/uppercase)

字符串用%s

  1. name = "John"
  2. print("Hello, %s!" % name)

用多个参数(多个参数说明符)时,后面%要用元组

  1. name = "John"
  2. age = 23
  3. print("%s is %d years old." % (name, age))

%s也能用来表示列表

  1. mylist = [1,2,3]
  2. print("A list: %s" % mylist )

exercise:

prints out the data using the following syntax:

 Hello John Doe. Your current balance is $53.44.

  1. data = ("John", "Doe", 53.44)
  2. format_string = "Hello"
  3. print("%s %s . %s, Your current balance is %s " %(format_string, data[0],data[1],data[2]))

官方答案:

  1. data = ("John", "Doe", 53.44)
  2. format_string = "Hello %s %s. Your current balance is $%s."
  3. print(format_string % data)

二、字符串的一些函数

1、len函数:字符串长度

  1. astring = "hello world"
  2. print(len(astring))

字符串包括数字和空格,因此,该输出为11

2、查找字符所在位置index

  1. astring = "hello world"
  2. print(astring.index("o"))

输出为4,意味这o与第一个字符h之间的距离为4

(字符串的初始为0,是由偏移量决定的 --> 第一个与第一个的偏移量为0,第二个字符为1.。。)

3、某字符在字符串中的个数count

  1. astring = "hello world"
  2. print(astring.count("l"))

4、字符切片

  1. astring = "Hello world!"
  2. print(astring[3:7])

输出字符串的第3到6位,没有第七位

输出结果为: lo w

如果括号中只有一个数字,它将在该索引处为您提供单个字符。

如果你省略了第一个数字,但保留了冒号,它会给你一个从头到你留下的数字的切片。

如果你省略了第二个数字,它会给你一个从第一个数字到最后的切片。

The general form is [start:stop:step]:第三位是步长

  1. astring = "Hello world!"
  2. print(astring[3:7:2])

对字符串进行翻转 -- 利用步长

  1. astring = "Hello world!"
  2. print(astring[::-1])

5、修改大小写字母:

  1. astring = "Hello world!"
  2. 全大写
  3. print(astring.upper())
  4. 全小写
  5. print(astring.lower())

6、判断开头和结尾

  1. astring = "Hello world!"
  2. print(astring.startswith("Hello"))
  3. #字符串以Hello开头,所以输出为true
  4. print(astring.endswith("asdfasdfasdf")
  5. #字符串不以该字符结尾,所以输出为false

7、拆分字符串

将字符串按照空格拆分为一组字符串,这些字符串组合在一个列表中。

由于此示例在空格处拆分,因此列表中的第一项将是“Hello”,第二项将是“world!”。

  1. astring = "Hello world!"
  2. afewwords = astring.split(" ")
  3. print(afewwords)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/72200
推荐阅读
相关标签
  

闽ICP备14008679号