質問編集履歴

2

ソースコードに正しく記載しました。

2021/07/12 03:38

投稿

1.2.qjail
1.2.qjail

スコア2

test CHANGED
File without changes
test CHANGED
@@ -33,6 +33,10 @@
33
33
 
34
34
 
35
35
  ```python
36
+
37
+ def toLowerCase(stringInput):
38
+
39
+
36
40
 
37
41
  if stringInput == "HELLO":
38
42
 

1

ソースコードに正しく記載しました。

2021/07/12 03:38

投稿

1.2.qjail
1.2.qjail

スコア2

test CHANGED
File without changes
test CHANGED
@@ -34,13 +34,7 @@
34
34
 
35
35
  ```python
36
36
 
37
- ソースコード
38
-
39
- ```def toLowerCase(stringInput):
40
-
41
-
42
-
43
- if stringInput == "HELLO":
37
+ if stringInput == "HELLO":
44
38
 
45
39
  return "hello"
46
40
 
@@ -52,7 +46,35 @@
52
46
 
53
47
  return "good morning"
54
48
 
49
+ 出力方法
55
50
 
51
+ print(toLowerCase("HELLO"))
52
+
53
+
54
+
55
+ print(toLowerCase("Recursion"))
56
+
57
+
58
+
59
+ print(toLowerCase("Good Morning"))
60
+
61
+
62
+
63
+ 出力結果
64
+
65
+ hello
66
+
67
+ recursion
68
+
69
+ good morning
70
+
71
+ None
72
+
73
+ ```
74
+
75
+
76
+
77
+
56
78
 
57
79
  ### 試したこと
58
80