博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 类变量与实例变量,可变对象与不可变对象的实践
阅读量:5095 次
发布时间:2019-06-13

本文共 582 字,大约阅读时间需要 1 分钟。

class E:    s=''    d=[]    def __init__(self):        self.dd=[]aa=E()aa.d.append('abc')aa.dd.append('abc')aa.s+='abc'print(aa.d)print(aa.dd)print(aa.s)print('='*20)print(E.d)print(E.s)print('='*20)aa=E()aa.d.append('123')aa.dd.append('123')aa.s+='123'print(aa.d)print(aa.dd)print(aa.s)

输出:

D:\Python37\python.exe D:/study____/PIC/test_import/a/a.py['abc']['abc']abc====================['abc']====================['abc', '123']['123']123Process finished with exit code 0

结论:

可变对象:list dict set

不可变对象:tuple string int float bool

 

转载于:https://www.cnblogs.com/bowanghou/p/11286859.html

你可能感兴趣的文章
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
数据库连接字符串大全 (转载)
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Screening technology proved cost effective deal
查看>>
Redis Cluster高可用集群在线迁移操作记录【转】
查看>>
mysql8.0.13下载与安装图文教程
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
【2.2】创建博客文章模型
查看>>
Kotlin动态图
查看>>
从零开始系列之vue全家桶(1)安装前期准备nodejs+cnpm+webpack+vue-cli+vue-router
查看>>
Jsp抓取页面内容
查看>>
大三上学期软件工程作业之点餐系统(网页版)的一些心得
查看>>
可选参数的函数还可以这样设计!
查看>>
[你必须知道的.NET]第二十一回:认识全面的null
查看>>
Java语言概述
查看>>
关于BOM知识的整理
查看>>