gpt4 book ai didi

python - 在Python中如何将程序放入程序中

转载 作者:行者123 更新时间:2023-12-01 06:12:19 24 4
gpt4 key购买 nike

我想将所有简单的数学程序用于基本财务比率,并将其编译成一个程序,我可以在其中打印程序列表并允许用户选择他或她希望运行的程序。这将如何实现?

到目前为止,我所尝试的结果只是运行所有程序,然后允许在完成所有前面的程序后声明您想要执行的操作,例如:打开文件并运行它,然后通过每一个都必须放置 margin() 来运行程序 margin()。

感谢您提前提供的帮助。我是编程新手,我所有的经验都是通过阅读和视频自学的,我希望用我最熟悉的 Python 语言来实现这一点。

最佳答案

我想我明白你在寻找什么,但如果我不正确地理解你,请发表评论。

完成您正在寻找的任务的最简单方法之一是仅使用 python 提示符本身。如果您将所有程序放在一个文件中(确保没有重叠的名称),那么您可以从一个程序中调用这些函数,将其称为 masterprogram.py然后在提示中导入 masterprogram 即可开始

运行dir(masterprogram)将列出masterprogram的所有函数,运行help(masterprogram.somefunction)将打印该函数的文档。

如果您想要了解其工作原理的示例,请尝试打开 python 提示符并运行观察以下内容:

>>> import math
>>> dir(math)
['__doc__', '__name__', '__package__', 'acos', 'acosh', 'asin', 'asinh', 'atan',
'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'er
fc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gam
ma', 'hypot', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'mod
f', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc']
>>> help(math.ceil)
Help on built-in function ceil in module math:

ceil(...)
ceil(x)

Return the ceiling of x as a float.
This is the smallest integral value >= x.

>>>

关于python - 在Python中如何将程序放入程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5146271/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com