質問するログイン新規登録

回答編集履歴

1

コードの修正

2019/06/27 18:29

投稿

kazuma-s
kazuma-s

スコア8222

answer CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  def print_info(p):
11
11
  while p != None:
12
- print("{:>2d}".format(int(p.number)), p.name, p.profile)
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')