python大法好——

时间:2021-02-27 04:29:33
1.字符串

字符串是 Python 中最常用的数据类型。我们可以使用引号('或")来创建字符串。

python大法好——

Python的字符串内建函数

Python 的字符串常用内建函数如下:

1、大小写转换:

>>>str=”hello world”

>>>str.capitalize()                    #首字母转大写

’Hello world’

>>>str.swapcase()                   -#小写转大写,大写转小写

’HELLOWORLD’

>>>str.upper()                        #小写转大写

’ HELLOWORLD’

>>>str.lower()                        #大写转小写

”hello world”

2、对齐方式:

ljust(width[, fillchar])          左对齐

rjust(width,[, fillchar])         右对齐

center(width, fillchar)               居中

fillchar 为填充的字符,默认为空格。

print(str.ljust(20))

print(str.center(40))

3、

count(str, beg=0,end=len(string)):返回str 在 string 里面出现的次数

print(str.count("o"))

title():所有单词都是以大写开始,其余字母均为小写(见istitle())

print(str.title())

4、

len(string):返回字符串长度

区别:
str"hello world"
print(str.__len__()) #依赖于类
print(len(str))      #不依赖于类
5、求最值

max(str)   \ min(str):返回字符串 str 中最大\最小的字母。

>>> str"hello world"

>>> max(str)

’w’

>>>min(str)

’’

>>>

6、

replace(old, new [, max]):     替换,如果 max 指定,则替换不超过 max 次。

#replace原字符串不会 被改变
print(str.replace("ll","LL"))

7、拆分

split(str="",num=string.count(str))      num=string.count(str)):以str 为分隔符截取字符串,num可指定截取次数

splitlines([keepends]):按照行('\r', '\r\n', \n')分隔,返回一个包含各行作为元素的列表,如果参数 keepends 为 False,不包含换行符,如果为 True,则保留换行符。

8、查找

find(str, beg=0end=len(string)) :检测 str 是否包含在字符串中   str.find("el")

rfind(str,beg=0,end=len(string))    :类似于 find()函数,不过是从右边开始查找.

index(str, beg=0,end=len(string))   跟find()方法一样

rindex( str, beg=0,end=len(string))     类似于 index(),不过是从右边开始.

9、去除空格

lstrip()                   截掉字符串左边的空格或指定字符。

rstrip()                   删除字符串末尾的空格.

strip([chars])          在字符串上执行 lstrip()和 rstrip()

10、

isalnum()           如果字符串至少有一个字符并且所有字符都是字母或数字则返 回 True,否则返回 False

isalpha()             如果字符串至少有一个字符并且所有字符都是字母则返回 True, 否则返回 False

isdigit()              如果字符串只包含数字则返回True 否则返回 False..

islower()    如果字符串中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是小写,则返                       回True,否则返回 False

isupper()   如果字符串中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是大写,则返回                     True,否则返回 False

isnumeric()        如果字符串中只包含数字字符,则返回 True,否则返回 False

isspace()           如果字符串中只包含空白,则返回True,否则返回 False.

istitle()              如果字符串是标题化的(见 title())则返回 True,否则返回 False

zfill (width)       返回长度为 width 的字符串,原字符串右对齐,前面填充0

2.列表

列表是最常用的Python数据类型,它可以作为一个方括号内的逗号分隔值出现。列表的数据项不需要具有相同的类型。列表是一种有序的集合,可以随时添加和删除其中的元素。
访问及删除列表中的元素

python大法好——

列表的数据项不需要具有相同的类型

List中的元素是可以改变的。

索引值以0开始,末尾从-1开始

创建列表:

list = ["a", "b", "c","d",]

n = [12,30,69,81,62]

访问列表中的值

使用下标索引来访问列表中的值,也可使用方括号的形式截取字符

print(list[1])

print(list[1:3])

列表的增删改查

增——两种方式

list.insert(2,2001)#必须给下标值
        print(list)
        list.append("hello")
        print(list)

删——两种方式

del list1[2]     #删除指定下标
        list1.pop()      #删除末尾
        list1.pop(2)     #删除指定下标
        list.remove(3)   #删除指定下标

拼接操作:

>>>list = [1, 4, 9, 16, 25]

>>> list + [36, 49, 64, 81, 100]

[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]