2020-10-19 21:08:55

This commit is contained in:
wizardforcel
2020-10-19 21:08:55 +08:00
parent 7f63048035
commit ab0caba1f0
140 changed files with 3982 additions and 3982 deletions

View File

@@ -7,7 +7,7 @@
In [1]:
```
```py
class MyClass(object):
def __init__(self):
print "I'm special!"
@@ -22,36 +22,36 @@ class MyClass(object):
In [2]:
```
```py
m = MyClass()
```
```
```py
I'm special!
```
In [3]:
```
```py
m.public()
```
```
```py
I'm public!
```
In [4]:
```
```py
m._private()
```
```
```py
I'm private!
```
@@ -60,12 +60,12 @@ I'm private!
In [5]:
```
```py
m._MyClass__really_special()
```
```
```py
I'm really special!
```