python

python

Python 入門 ノート (44)関数内関数(innner function)

関数内関数(innner function)def outer(a, b):    print(a, b)outer(1, 2)1 2上記の関数の中にさらに関数を定義します。def outer(a, b):    def plus(c, d...
python

Python 入門 ノート (43)Docstringsとは

Docstringsとは (関数の説明を関数内に書く)関数内にDocuments(説明)を記述します。書き方は、"""で始まり ”””で終わります。間がコメントアウトとして説明になります。def example_func(param1, p...
python

Python 入門 ノート (42)キーワード引数の辞書化

キーワード引数の辞書化簡単なキーワード引数を使った関数を定義します。def menu(entree = 'beef', drink = 'wine'):    print(entree, drink)menu(entree = 'beef'...
python

Python 入門 ノート (41)位置引数のタプル化

位置引数のタプル化次のような一つの引数のみ出力する簡単な関数があります。def say_something(word):    print(word)say_something('Hi!')Hi!引数の数を増やすと、次のようになります。de...
python

Python 入門 ノート (40)デフォルト引数で気を付けること

デフォルト引数で気を付けることリスト(l) に x を追加する関数 test_funcがあります。def test_func(x, l=[]):    l.append(x)    return(l)y = r = test_func(10...
python

Python 入門 ノート (39)位置引数とキーワード引数とデフォルト引数

位置引数とキーワード引数とデフォルト引数引数が単体の場合def menu(entree):    print(entree)menu('beef')beef位置引数引数が複数の場合 順序を正しくする必要があります。def menu(entr...
python

Python 入門 ノート (38)関数の引数と戻り値の宣言(関数アノテーション「注釈」)

関数の引数と戻り値の宣言(関数アノテーション「注釈」)python.3.6以降関数の宣言時に注意すべき点。python3.6以降では変数宣言の際下記の様に型を付加できます。(関数アノテーション「注釈」」)num: int = 10これを利用...
python

Python 入門 ノート (37)関数定義

関数定義(definition)def say_something():    print('hi')say_something()hisay_somethingのtypeを調べるとprint(type(say_something))<cl...
python

Python 入門 ノート (36)辞書をfor文で処理をする

辞書をfor文で処理をする items()メソッドd = {'x': 100, 'y': 200}for v in d:    print(v)xy上記ではキーと値が表示されません。items() メソッドd = {'x': 100, 'y...
python

Python 入門 ノート (35)zip関数

zip関数 複数のリストの要素を取得月曜日にappleとcofee, 火曜日にbananaとtea, 水曜日にorangeとbeerを摂取するとします。for loop で回してprint します。days = fruits = drink...