如何通过接受用户的功能名称来打印任何功能的说明?

时间:2019-06-05 07:44:14

标签: python

我正在使用 doc 函数来打印系统功能的描述 但是用户输入被认为是字符串,并且我正在获取字符串的描述

我尝试过

fun = input("Enter function name").strip('!"')
fun =[input("Enter function name")]

fun = input("Enter the function of which you want to check description:").strip('!"')
print(fun.__doc__)

测试:-

input:abs
expected output : Return the absolute value of the argument.

Program Output :Enter the function of which you want to check description:abs

str(object='') -> str
str(bytes_or_buffer[, encoding[, errors]]) -> str

从给定对象创建一个新的字符串对象。如果编码或 指定了错误,则对象必须公开数据缓冲区 将会使用给定的编码和错误处理程序进行解码。 否则,返回对象的结果。 str ()(如果已定义) 或repr(object)。 编码默认为sys.getdefaultencoding()。 错误默认为“严格”。**

0 个答案:

没有答案