-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractive.py
85 lines (57 loc) · 1.33 KB
/
practive.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import unicodedata
def show_message(f):
def wrapper():
print("(1).This is decorator");
return f();
return wrapper
def add_function(f):
def wrapper():
print("(2).Add one more function .");
return f();
return wrapper
# デコレータを2つ重ねる
@show_message
@add_function
def a_method():
print("(3).The method which do something.");
pass
a_method();
def outer(param):
def inner(inner_param):
nonlocal param;
param += 1;
print(param)
# print(inner_param)
pass
return inner;
a = 1;
b = outer(a);
b(0);
b(0);
b(0);
b(0);
b(0);
b(0);
b(0);
sentence = "123456789アイウエオカキクケコ麵"
converted_sentence = unicodedata.normalize("NFKC", sentence);
print(sentence);
print(converted_sentence);
class SuperClass:
def __init__(self):
print("This is construct");
def method_a(self):
print(self);
print("This is the method named 'method_a'");
class ChildClass(SuperClass):
def __init__(self):
super().__init__()
def method_b(self):
print(self);
print("This is a method named 'method_b'");
def method_a(self):
print("Overriding a method named 'method_a'")
super().method_a();
obj = ChildClass();
obj.method_b();
obj.method_a();