163
社区成员
发帖
与我相关
我的任务
分享
1. 在自己的Python编程环境里,编程实现上述三道练习题,最好和参考答案代码不一样。
2. 测试运行你自己编写的代码和参考答案代码。
3. 如果测试运行时候,你的代码出现Bug,分析原因并调试代码。
4. 将上述1~3 要求写成博客发表。
设计一个函数,输入两个参数x和y,返回它们的和、差、积、商(商保留两位小数)。如果y等于0,则返回None。
两个数x和y,其中y不能为0。
四个数,分别为x和y的和、差、积、商(保留两位小数)。
def arithmetic_operations(x, y): if y == 0: return None sum = x + y difference = x - y product = x * y quotient = round(x / y, 2) return sum, difference, product, quotient result = arithmetic_operations(5, 3) print(result)
设计一个Lambda函数,输入一个列表和一个参数n,返回列表中所有大于n的数。
一个列表和一个数n。
一个列表,包含所有大于n的数。
numbers = [1, 3, 5, 7, 9, 11]
n = 5
greater_than_n = list(filter(lambda x: x > n, numbers))
print(greater_than_n)
设计一个递归函数,输入一个正整数n,返回n的阶乘。
一个正整数n。
一个数,即n的阶乘。
def factorial(n):
if n == 1:
return 1
else:
return n * factorial(n - 1)
n = 5
print(factorial(n))