回答編集履歴

2

lowerの箇所の修正

2020/03/25 08:19

投稿

merll0573
merll0573

スコア17

test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  text = 'aAa'
26
26
 
27
- if text.lower == 'AAa'.lower:
27
+ if text.lower() == 'AAa'.lower():
28
28
 
29
29
  print('一致')
30
30
 

1

誤字修正

2020/03/25 08:19

投稿

merll0573
merll0573

スコア17

test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  text = 'aAa'
26
26
 
27
- if 'text.lower == 'AAa'.lower:
27
+ if text.lower == 'AAa'.lower:
28
28
 
29
29
  print('一致')
30
30