[python]-字符串String

2021-02-03  本文已影响0人  阿ll

1. 字符串

字符串:单/双引号括起来的一切文本都可以成为字符串;对于多行文本,使用三引号。

2. 创建字符串(str):

2.1 创建字符串

new_str = "This is a string."
print(new_str)
## This is a string.
print(type(new_str))
## <class 'str'>

2.2 创建多行字符串

new_mstr = """
hello
this is
a string
"""
print(new_mstr)
print(type(new_mstr))
2.2 创建多行字符串-结果

2.3 创建重复性字符

print("this" * 3)
## thisthisthis

3. 操作字符串

3.1 合并/连接字符串

Python使用加号(+)来合并字符串。

print(new_str+"this" * 3)
## This is a string.thisthisthis

#python 中有括号优先原则:
print((new_str+"this") * 3)
## This is a string.thisThis is a string.thisThis is a string.this

#加空格/其它连字符
print(new_str + " " + "3" )
## This is a string. 3

应用示例:

first = "python"
last = "new"
full_message = first + " " +last
print (full_message)

## python new

[注]:

3.2 修改字符串的大小写

new_str = "ada lovelace" 
print(new_str.title())  # 首字母大写
print(new_str.upper())  #全大写
print(new_str.lower())  #全小写

## Ada Lovelace
## ADA LOVELACE
## ada lovelace

理解命令,例如print(new_str.title())

3.3 其它操作

删除空白:

strip()可以查找字符串开头和末尾的空白并将其删除;

new_str2 = " python "
print(new_str2)
print(new_str2.strip())
print(new_str2.rstrip())
print(new_str2.lstrip())

## python 
##python
## python
##python 

字符串-完

上一篇下一篇

猜你喜欢

热点阅读