2018年9月6日木曜日

開発環境

  • macOS High Sierra - Apple
  • Emacs (Text Editor)
  • Python 3.7 (プログラミング言語)

入門 Python 3 (Bill Lubanovic (著)、斎藤 康毅 (監修)、長尾 高弘 (翻訳)、オライリージャパン)の4章(Pyの皮: コード構造)、4.13(復習問題)4-10.を取り組んでみる。

コード(Emacs)

Python 3

#!/usr/bin/env python3

print('10.')


def test(func):
    def inner(*args, **kwargs):
        print('start')
        result = func(*args, **kwargs)
        print('end')
        return result
    return inner


@test
def f(a, b):
    return a + b


res = f(1, 2)
print(res)

入出力結果(Terminal, Jupyter(IPython))

$ ./sample4.py
10.
start
end
3
$

0 コメント:

コメントを投稿