鱼C论坛

 找回密码
 立即注册
查看: 778|回复: 3

[已解决]textbox

[复制链接]
发表于 2022-2-17 19:27:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
textbox()函数的返回值是什莫?
最佳答案
2022-2-17 20:24:39
本帖最后由 isdkz 于 2022-2-18 10:49 编辑

你如果想知道一个函数的返回值,你可以在 python shell 中使用 help() 函数,
help() 函数的用法有:

一:导入了这个模块的情况下,可以直接给 help() 传入函数对象
import easygui
help(easygui.textbox)

二:你也可以不导入这个模块,需要给 help() 传入函数路径的字符串
help("easygui.textbox")

可以得到以下结果:
Help on function textbox in easygui:

easygui.textbox = textbox(msg='', title=' ', text='', codebox=False, callback=None, run=True)
    Displays a dialog box with a large, multi-line text box, and returns
    the entered text as a string. The message text is displayed in a
    proportional font and wraps.

    Parameters
    ----------
    msg : string
        text displayed in the message area (instructions...)
    title : str
        the window title
    text: str, list or tuple
        text displayed in textAreas (editable)
    codebox: bool
        if True, don't wrap and width is set to 80 chars
    callback: function
        if set, this function will be called when OK is pressed
    run: bool
        if True, a box object will be created and returned, but not run

    Returns
    -------
    None
        If cancel is pressed
    str
        If OK is pressed returns the contents of textArea

>>>


Retruns 里面的即为返回值
从返回的结果中可以看到,如果按下取消键,返回None,
如果按下OK键,返回文本域中的内容,类型为字符串

我们还可以看到,help() 函数不仅返回了返回值的类型和描述,
还返回了这个函数的作用,参数的类型及默认值和对参数的描述,
help() 函数也可以对模块和类使用,help() 是我们学习 python 的一个好帮手


顺便告诉你一个小秘密,实际上,help() 是返回了对象的__doc__属性,不信你看:
>>> import easygui
>>> print(easygui.textbox.__doc__)
Displays a dialog box with a large, multi-line text box, and returns
    the entered text as a string. The message text is displayed in a
    proportional font and wraps.

    Parameters
    ----------
    msg : string
        text displayed in the message area (instructions...)
    title : str
        the window title
    text: str, list or tuple
        text displayed in textAreas (editable)
    codebox: bool
        if True, don't wrap and width is set to 80 chars
    callback: function
        if set, this function will be called when OK is pressed
    run: bool
        if True, a box object will be created and returned, but not run

    Returns
    -------
    None
        If cancel is pressed
    str
        If OK is pressed returns the contents of textArea


>>>

而 __doc__ 属性其实是你在函数、类或模块开头加上的多行注释(注意这里的多行注释指的是注释类型,多行也可以单行),没有默认为None:
>>> def test():
...     ...
...
>>> test.__doc__

>>> def test():
...     # test
...     ...
...
>>> test.__doc__

>>> def test():
...     '''
...     test
...     '''
...     ...
...
>>> test.__doc__
'\n\ttest\n\t'

>>> def test():
...     '''test'''
...     ...
...
>>> test.__doc__
'test'
>>>

那既然这样,help() 还有什么存在的意义呢?
其实我也不知道,管他呢,存在即合理嘛

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-2-17 19:41:19 | 显示全部楼层
import easygui as eg


print(eg.textbox("Hello"))

运行效果:
Snipaste_2022-02-17_19-38-24.png
如果你输入 abc 并且你点击OK,返回"abc"
如果你啥都没输入并且你点击OK, 返回 ""(空字符串)
如果你点击 Cancel,返回 None

本人还没学easygui,仅供参考
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-17 20:24:39 | 显示全部楼层    本楼为最佳答案   
本帖最后由 isdkz 于 2022-2-18 10:49 编辑

你如果想知道一个函数的返回值,你可以在 python shell 中使用 help() 函数,
help() 函数的用法有:

一:导入了这个模块的情况下,可以直接给 help() 传入函数对象
import easygui
help(easygui.textbox)

二:你也可以不导入这个模块,需要给 help() 传入函数路径的字符串
help("easygui.textbox")

可以得到以下结果:
Help on function textbox in easygui:

easygui.textbox = textbox(msg='', title=' ', text='', codebox=False, callback=None, run=True)
    Displays a dialog box with a large, multi-line text box, and returns
    the entered text as a string. The message text is displayed in a
    proportional font and wraps.

    Parameters
    ----------
    msg : string
        text displayed in the message area (instructions...)
    title : str
        the window title
    text: str, list or tuple
        text displayed in textAreas (editable)
    codebox: bool
        if True, don't wrap and width is set to 80 chars
    callback: function
        if set, this function will be called when OK is pressed
    run: bool
        if True, a box object will be created and returned, but not run

    Returns
    -------
    None
        If cancel is pressed
    str
        If OK is pressed returns the contents of textArea

>>>


Retruns 里面的即为返回值
从返回的结果中可以看到,如果按下取消键,返回None,
如果按下OK键,返回文本域中的内容,类型为字符串

我们还可以看到,help() 函数不仅返回了返回值的类型和描述,
还返回了这个函数的作用,参数的类型及默认值和对参数的描述,
help() 函数也可以对模块和类使用,help() 是我们学习 python 的一个好帮手


顺便告诉你一个小秘密,实际上,help() 是返回了对象的__doc__属性,不信你看:
>>> import easygui
>>> print(easygui.textbox.__doc__)
Displays a dialog box with a large, multi-line text box, and returns
    the entered text as a string. The message text is displayed in a
    proportional font and wraps.

    Parameters
    ----------
    msg : string
        text displayed in the message area (instructions...)
    title : str
        the window title
    text: str, list or tuple
        text displayed in textAreas (editable)
    codebox: bool
        if True, don't wrap and width is set to 80 chars
    callback: function
        if set, this function will be called when OK is pressed
    run: bool
        if True, a box object will be created and returned, but not run

    Returns
    -------
    None
        If cancel is pressed
    str
        If OK is pressed returns the contents of textArea


>>>

而 __doc__ 属性其实是你在函数、类或模块开头加上的多行注释(注意这里的多行注释指的是注释类型,多行也可以单行),没有默认为None:
>>> def test():
...     ...
...
>>> test.__doc__

>>> def test():
...     # test
...     ...
...
>>> test.__doc__

>>> def test():
...     '''
...     test
...     '''
...     ...
...
>>> test.__doc__
'\n\ttest\n\t'

>>> def test():
...     '''test'''
...     ...
...
>>> test.__doc__
'test'
>>>

那既然这样,help() 还有什么存在的意义呢?
其实我也不知道,管他呢,存在即合理嘛

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-18 10:04:49 | 显示全部楼层
isdkz 发表于 2022-2-17 20:24
你如果想知道一个函数的返回值,你可以在 python shell 中使用 help() 函数,
help() 函数的用法有:

感谢大哥分享
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 06:09

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表