0
0

More than 1 year has passed since last update.

python 関数をオブジェクトとしてとらえる。ーメモ

Posted at
def greeting():
  print('hello')
  print('nice to meet you')

greeting()

こちらは、ふつうの関数😉

pythonでは、関数をオブジェクトとして扱える。
:relaxed:

def double(func):
  func()
  func()

double(greeting)

同じ関数を二度呼び出しました。:fist:

実行結果

hello
nice to meet you
hello
nice to meet you
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0