8章

0
3d people - man, person with arrow. Challenge

1・statisticsモジュール別の関数を読んでみよう。

import statistics
data = [14, 3, 11, 133, 4]
result = statistics.median_low(data)
print(result)

2・cubed という名前のモジュールを作って関数を一つ書こう。関数は一つの数値を引数として受け取り、渡された数値を3乗して返そう。このモジュールはほかのモジュールからインポートして関数を渡そう。

import cubed

result = cubed.cube_it(3)
print(result)