实用的程序代码是指那些在编程过程中常用的、经过验证的代码,它们能够实现一些常见的功能或解决一些常见问题。以下是一些常见的实用代码示例:
判断两个字符串是否相等
```python
str1 = "hello"
str2 = "world"
if str1 == str2:
print("两个字符串相等")
else:
print("两个字符串不相等")
```
判断一个数是否为偶数
```python
num = 6
if num % 2 == 0:
print("这个数是偶数")
else:
print("这个数是奇数")
```
打印列表中的所有元素
```python
my_list = [1, 2, 3, 4, 5]
for item in my_list:
print(item)
```
求列表中的最大值
```python
my_list = [1, 5, 3, 9, 2]
max_value = max(my_list)
print("列表中的最大值是:", max_value)
```
检查文件是否存在
```python
import os
file_path = "C:/example.txt"
if os.path.exists(file_path):
print("文件存在")
else:
print("文件不存在")
```
反转字符串
```python
str = "hello"
reversed_str = str[::-1]
print("反转后的字符串是:", reversed_str)
```
使用正则表达式匹配字符串
```python
import re
text = "Hello, my name is John."
pattern = r"my name is (\w+)."
match = re.search(pattern, text)
if match:
print("匹配到的名字是:", match.group(1))
```
打印输出
```python
print("Hello, World!")
```
变量赋值
```python
int x = 5
```
条件判断
```python
int x = 10
if x > 0:
print("x是正数")
else:
print("x是负数")
```
循环结构
```python
for i in range(10):
print(i)
```
函数定义和调用
```python
def add(a, b):
return a + b
d = add(2, 3)
print(d)
```
输入输出处理
```python
user_input = input("请输入一个数字: ")
print("你输入的数字是:", user_input)
```
数据结构和算法
```python
排序列表
my_list = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]
sorted_list = sorted(my_list)
print("排序后的列表:", sorted_list)
```
异常处理
```python
try:
result = 10 / 0
except ZeroDivisionError:
print("除数不能为零")
```
这些代码示例涵盖了字符串操作、数值计算、列表处理、文件操作、条件判断、循环结构、函数定义和调用、输入输出处理、数据结构和算法以及异常处理等多个方面,是编程中常用的实用代码片段。根据具体的编程需求和场景,可以选择合适的代码片段进行组合和扩展,以提高编程效率和代码的可维护性。