当前位置:网站首页>__str__输出类
__str__输出类
2022-07-19 16:39:00 【扬州的你】
class Cat:
"""定义一个猫类"""
def __init__(self, new_name, new_age):
"""在创建完对象之后 会自动调用, 它完成对象的初始化的功能"""
# self.name = "汤姆"
# self.age = 20
self.name = new_name
self.age = new_age # 它是一个对象中的属性,在对象中存储,即只要这个对象还存在,那么这个变量就可以使用
# num = 100 # 它是一个局部变量,当这个函数执行完之后,这个变量的空间就没有了,因此其他方法不能使用这个变量
def __str__(self):
"""返回一个对象的描述信息"""
# print(num)
return "名字是:%s , 年龄是:%d" % (self.name, self.age)
def eat(self):
print("%s在吃鱼...." % self.name)
def drink(self):
print("%s在喝可乐..." % self.name)
def introduce(self):
# print("名字是:%s, 年龄是:%d" % (汤姆的名字, 汤姆的年龄))
# print("名字是:%s, 年龄是:%d" % (tom.name, tom.age))
print("名字是:%s, 年龄是:%d" % (self.name, self.age))
# 创建了一个对象
tom = Cat("汤姆", 30)
print(tom)
边栏推荐
- 若依框架-表单按照字段合计,按照某个字段排序
- MATLAB快速将影像的二维坐标转换为经纬度坐标
- Huayun data won the outstanding contribution enterprise of sustainable technological innovation
- 力扣解法汇总731-我的日程安排表 II
- 信通院《分布式存储发展白皮书(2022年)》发布:华云数据参与编制 为产业发展提速换挡
- R language "error in NLS cycles more than 50" solution
- Geoscience academic resources (common data and their download addresses)
- Remember to crawl the search engine thumbnail once and save it locally
- Rambus宣布面向数据中心和PC的DDR5内存接口芯片产品组合
- 融云推出实时社区解决方案,垂直兴趣社交「高级玩家」上线
猜你喜欢
php7.4升级php8.0后重启系统网站访问异常问题
The white paper on the development of distributed storage (2022) issued by the ICT Institute: Huayun data participated in the preparation to speed up the development of the industry
vscode 保存设置配置参数到用户与工作区的区别
If the total is based on the frame form by field, sort by a field
[software testing] what kind of resume can HR like at a glance
大屏:页面在不同比例屏幕的显示适配与字体随屏幕改变而改变(字体随屏幕分辨率改变自适应的问题)
Quickly extract tables from PDF files
批量下载数据——以TRMM数据为例
Arcgis/arcpy convert floating-point grid to integer grid
VRRP Technology (detailed explanation)
随机推荐
Database persistence +jdbc database connection
101 questions in software testing interview (with answers)
Cobbler offline installation
Go fastdfs distributed file system construction (implementation sorting)
降水数据汇总
Arcpy batch conversion data projection (taking Albers as an example)
JVM 上數據處理語言的競爭:Kotlin, Scala 和 SPL
MIT6.S081-Lab10 mmap [2021Fall]
php7.4升级php8.0后重启系统网站访问异常问题
Geoscience academic resources III (zoning data)
Draw 95% confidence interval diagram with MATLAB
快速提取PDF文件中的表格
地学学术资源III(区划数据)
为 KubeSphere 集群启用免费的泛域名 SSL 证书并实现证书自动更新和分发
Matlab calculates the distance between two points (longitude and latitude coordinates) (large arc method and haversine method)
TRMM降水数据下载步骤
JMeter practical operation -- database data drive
Go基础笔记_5_流程语句
【软件测试】测试大纲法——测试用例编写
Large screen: the display adaptation and font of the page on different scale screens change with the screen change (the font changes adaptively with the screen resolution)