8-19分享
Posted a438842265
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8-19分享相关的知识,希望对你有一定的参考价值。
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分享的主要内容,如果未能解决你的问题,请参考以下文章