您的位置:

Python Method List: 常用方法总结

Python是一门高级编程语言,它被广泛应用于各种领域,包括Web开发、科学计算、人工智能等。在Python编程中,我们经常需要使用各种方法来完成我们的任务。本文将介绍Python中的一些常用方法,并详细说明它们的用法和示例代码。

一、字符串操作

Python中的字符串是不可变的,这意味着一旦创建就无法修改,但我们可以通过各种方法对它进行操作。下面是Python中一些常用的字符串方法:

1、lower:返回字符串的小写版本


text = "HELLO WORLD"
print(text.lower())

输出结果:


hello world

2、upper:返回字符串的大写版本


text = "hello world"
print(text.upper())

输出结果:


HELLO WORLD

3、split:将字符串分割成一个列表


text = "hello world"
print(text.split())

输出结果:


['hello', 'world']

4、join:将列表中的字符串使用指定的分隔符连接成一个字符串


words = ["hello", "world"]
print(" ".join(words))

输出结果:


hello world

二、列表操作

Python中的列表是包含任意类型对象的可变序列,列表可以进行添加、删除、修改等操作。下面是Python中一些常用的列表方法:

1、append:在列表的末尾添加一个元素


fruits = ["apple", "banana", "cherry"]
fruits.append("orange")
print(fruits)

输出结果:


['apple', 'banana', 'cherry', 'orange']

2、extend:在列表的末尾添加另一个列表的所有元素


fruits = ["apple", "banana", "cherry"]
more_fruits = ["orange", "mango", "grape"]
fruits.extend(more_fruits)
print(fruits)

输出结果:


['apple', 'banana', 'cherry', 'orange', 'mango', 'grape']

3、insert:在指定位置插入一个元素


fruits = ["apple", "banana", "cherry"]
fruits.insert(1, "orange")
print(fruits)

输出结果:


['apple', 'orange', 'banana', 'cherry']

4、remove:删除指定的元素


fruits = ["apple", "banana", "cherry"]
fruits.remove("banana")
print(fruits)

输出结果:


['apple', 'cherry']

5、pop:删除指定位置的元素(默认为最后一个元素),并返回该元素的值


fruits = ["apple", "banana", "cherry"]
banana = fruits.pop(1)
print(banana)
print(fruits)

输出结果:


banana
['apple', 'cherry']

三、字典操作

Python中的字典可以存储键值对,字典中的键必须是唯一的,值可以是任意类型。下面是Python中一些常用的字典方法:

1、get:获取指定键的值,如果键不存在则返回默认值


person = {"name": "Alex", "age": 18}
print(person.get("name", "Unknown"))
print(person.get("gender", "Unknown"))

输出结果:


Alex
Unknown

2、keys:返回字典中所有键


person = {"name": "Alex", "age": 18}
print(person.keys())

输出结果:


dict_keys(['name', 'age'])

3、values:返回字典中所有值


person = {"name": "Alex", "age": 18}
print(person.values())

输出结果:


dict_values(['Alex', 18])

4、items:返回字典中所有键值对


person = {"name": "Alex", "age": 18}
print(person.items())

输出结果:


dict_items([('name', 'Alex'), ('age', 18)])

5、update:将另一个字典中的键值对更新/添加到当前字典


person = {"name": "Alex", "age": 18}
person.update({"gender": "male", "age": 19})
print(person)

输出结果:


{'name': 'Alex', 'age': 19, 'gender': 'male'}

四、文件操作

Python中的文件操作非常简单,我们可以使用open()函数打开文件,使用read()函数读取文件内容,使用write()函数将内容写入文件。下面是Python中一些常用的文件操作方法:

1、open:打开文件,并返回一个文件对象


f = open("test.txt", "r")
print(f.read())
f.close()

2、read:读取文件内容,返回字符串


f = open("test.txt", "r")
print(f.read())
f.close()

3、write:将内容写入文件


f = open("test.txt", "w")
f.write("Hello, world!")
f.close()

4、close:关闭文件


f = open("test.txt", "r")
print(f.read())
f.close()

五、数学操作

Python中的math库提供了很多数学函数,比如三角函数、幂函数等。下面是Python中一些常用的math库函数:

1、ceil:返回大于等于给定数值的最小整数


import math

x = 3.7
print(math.ceil(x))

输出结果:


4

2、sqrt:返回给定数值的平方根


import math

x = 4
print(math.sqrt(x))

输出结果:


2.0

3、cos:返回给定角度的余弦值


import math

x = 45
print(math.cos(math.radians(x)))

输出结果:


0.7071067811865476

4、pow:返回给定数值的指定次幂


import math

x = 2
y = 3
print(math.pow(x, y))

输出结果:


8.0

5、factorial:返回给定数值的阶乘


import math

x = 5
print(math.factorial(x))

输出结果:


120
本文介绍了Python中一些常用的方法,包括字符串操作、列表操作、字典操作、文件操作、数学操作。这些方法可以帮助我们更加方便地完成Python编程,提高工作效率。