UCB CS 61A - If Function vs Statement
2021/8/23 23:36:26
本文主要是介绍UCB CS 61A - If Function vs Statement,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Problem
Let's write a function that does the same thing as an if
statement.
""" Return true_result if condition is a true value, and false_result otherwise. >>> if_function(True, 2, 3) 2 >>> if_function(False, 2, 3) 3 >>> if_function(3==2, 3+2, 3-2) 1 >>> if_function(3>2, 3+2, 3-2) 5 """ def if_function(condition, true_result, false_result): if condition: return true_result else: return false_result
""" >>> result = with_if_statement() 47 >>> print(result) None """ def with_if_statement(): if cond(): return true_func() else: return false_func()
""" >>> result = with_if_function() 42 47 >>> print(result) None """ def with_if_function(): return if_function(cond(), true_func(), false_func())
Despite the doctests above, this function actually does not do the same thing as an if
statement in all cases. To prove this fact, write functions cond
, true_func
, and false_func
such that with_if_statement
prints the number 47, but with_if_function
prints both 42 and 47.
Solution
def cond(): return False
def true_func(): print(42)
def false_func(): print(47)
这篇关于UCB CS 61A - If Function vs Statement的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23新能源车企如何通过CRM工具优化客户关系管理,增强客户忠诚度与品牌影响力
- 2024-12-23原创tauri2.1+vite6.0+rust+arco客户端os平台系统|tauri2+rust桌面os管理
- 2024-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程