help() 用于查看函数或模块的帮助信息

In [1]: help(id)    # 查看id()这个函数的帮助信息,注意不要写成help(id())
id(...)
    id(object) -> integer
    Return the identity of an object.  This is guaranteed to be unique among
    simultaneously existing objects.  (Hint: it's the object's memory address.)
(END)

 

 

 

 

    

相关文章:

  • 2021-10-05
  • 2021-07-05
  • 2021-07-30
  • 2021-07-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2021-05-07
  • 2021-06-15
  • 2021-07-29
  • 2021-11-30
相关资源
相似解决方案