回答編集履歴
1
コードの修正
answer
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
def print_info(p):
|
|
11
11
|
while p != None:
|
|
12
|
-
print("{:>2d}".format(
|
|
12
|
+
print("{:>2d}".format(p.number), p.name, p.profile)
|
|
13
13
|
p = p.next
|
|
14
14
|
|
|
15
15
|
f = open('zac_japan.txt', 'r', encoding = 'utf-8')
|