回答編集履歴

1

修正

2017/08/07 05:24

投稿

momf
momf

スコア416

test CHANGED
@@ -16,6 +16,8 @@
16
16
 
17
17
 
18
18
 
19
+ #printで表示するだけの関数を実行しただけ
20
+
19
21
  print_hello() #hello
20
22
 
21
23
 
@@ -26,6 +28,8 @@
26
28
 
27
29
 
28
30
 
31
+ #returnで返ってきた"world !"という文字列を表示
32
+
29
33
  print (return_hello()) #world !
30
34
 
31
35
  ```