日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python精要(66)—类(3)-文档字符串,注释文档

發布時間:2025/3/12 python 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python精要(66)—类(3)-文档字符串,注释文档 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mon Feb 22 08:35:42 2021@author: myhaspl """class Point:def __new__(cls,x=0,y=0):'new調用此方法后,再調用__init__構造函數,可在此方法中對父類的__new__方法進行調用'print("new")return object.__new__(cls)def __init__(self,x=0,y=0):print("init")self.set(x,y)def set(self,x,y):"設置點對象的坐標值"self.x=xself.y=ydef setFromPoint(self,point):"""從另一個相同的類對象設置本類對象的坐標值。"""self.x=point.xself.y=point.yb=Point(10,20) print(b.x) print(b.y) b.set(101, 102) print(b.x) print(b.y)a=Point() print(a.x) print(a.y) a.setFromPoint(b) print(a.x) print(a.y)

文檔字符串用于注釋文檔
1、‘’或“”完成單行文檔注釋
2、""" “”"完成多行文檔注釋
3、使用help查看文檔

help(Point) Help on class Point in module __main__:class Point(builtins.object)| Point(x=0, y=0)| | Methods defined here:| | __init__(self, x=0, y=0)| Initialize self. See help(type(self)) for accurate signature.| | set(self, x, y)| 設置點對象的坐標值| | setFromPoint(self, point)| 從另一個相同的類對象設置| 本類對象的坐標值。| | ----------------------------------------------------------------------| Static methods defined here:| | __new__(cls, x=0, y=0)| new調用此方法后,再調用__init__構造函數,可在此方法中對父類的__new__方法進行調用| | ----------------------------------------------------------------------| Data descriptors defined here:| | __dict__| dictionary for instance variables (if defined)| | __weakref__| list of weak references to the object (if defined)

總結

以上是生活随笔為你收集整理的python精要(66)—类(3)-文档字符串,注释文档的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。