码迷,mamicode.com
首页 > 其他好文 > 详细

8-19分享

时间:2019-08-19 13:22:35      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:默认   parent   class   保留   怎么   pytho   pre   int   实现   

1. json序列化时,默认遇到中文会转换成unicode,如果想要保留中文怎么办?

2. 下面这段代码的输出结果将是什么?请解释

class Parent(object):
    x = 1
class Child1(Parent):
    pass
class Child2(Parent):
    pass

print(Parent.x,Child1.X,Child2.X)
Child1.X = 2
print(Parent.x,Child1.X,Child2.X)
Parent.X = 3
print(Parent.x,Child1.X,Child2.X)

3.面向对象实现一个栈?

8-19分享

标签:默认   parent   class   保留   怎么   pytho   pre   int   实现   

原文地址:https://www.cnblogs.com/a438842265/p/11376225.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!