python3 中通过help函数查看其它函数的说明

在学习python过程中,会经常遇到一些函数,那么怎么查看官方对此函数的简单介绍呢?
python提供了help方法来帮助我们。

  • 首先,进入python3的命令行页面:
    python3 中通过help函数查看其它函数的说明

    • 比如我们要对print()函数进行查看
      python3 中通过help函数查看其它函数的说明
  • 那么这段英文描述,就详细介绍了print()函数的用法
    python3 中通过help函数查看其它函数的说明

相关文章:

  • 2021-11-18
  • 2022-12-23
  • 2021-08-02
  • 2021-08-13
  • 2022-12-23
  • 2021-08-29
  • 2021-12-19
猜你喜欢
  • 2022-02-01
  • 2022-12-23
  • 2021-04-01
  • 2022-12-23
  • 2022-02-04
  • 2021-12-03
  • 2021-11-25
相关资源
相似解决方案