专业编程基础技术教程

网站首页 > 基础教程 正文

python常用的Python内置函数示例及代码(收藏)

ccvgpt 2024-09-09 02:25:01 基础教程 36 ℃

Python内置函数是语言提供的一些基本功能,无需导入任何模块即可直接使用。下面是几个常用的Python内置函数的示例及代码:

1. `print()`: 用于打印输出信息。

python常用的Python内置函数示例及代码(收藏)

```python

print("Hello, World!") # 打印 Hello, World!

```

2. `len()`: 用于获取对象的长度。

```python

my_list = [1, 2, 3, 4, 5]

length = len(my_list)

print(length) # 打印 5

```

3. `type()`: 用于获取对象的类型。

```python

my_variable = "Hello"

variable_type = type(my_variable)

print(variable_type) # 打印

```

4. `range()`: 用于生成一个整数序列,常用于循环中。

```python

for i in range(1, 5):

print(i) # 打印 1, 2, 3, 4

```

5. `input()`: 用于从用户处获取输入。

```python

name = input("请输入你的名字:")

print(f"你好,{name}!") # 根据用户输入打印欢迎消息

```

6. `int()`, `float()`, `str()`: 用于将其他类型转换为整数、浮点数和字符串。

```python

num_str = "123"

num_int = int(num_str)

num_float = float(num_str)

print(type(num_int)) # 打印

print(type(num_float)) # 打印

```

7. `max()`, `min()`: 用于获取序列或多个参数中的最大值和最小值。

```python

numbers = [5, 2, 9, 1, 7]

max_value = max(numbers)

min_value = min(numbers)

print(max_value) # 打印 9

print(min_value) # 打印 1

```

以上是一些常用的Python内置函数的示例及代码。这些内置函数提供了基本的操作和功能,可以满足日常编程需求,并且无需导入任何模块即可直接使用。

最近发表
标签列表