8.1.2関数名今回コードはないですね代わりに識別子でしょうか?がびっしりです。動詞 役割add 追加get 取得insert 挿入begin 開始start 開始open 開くread 読み込みsend 送信create 生成is ~であるかremove/delete 削除set 設定replace ...
もっと読む
2023年06月
Python勉強中 8.1.1ユーザー定義関数の基本構造 20230630
8.1.1ユーザー定義関数の基本構造構文 def命令def 関数名(引数、...)...任意の処理...return 戻り値>>> def get_triangle(base, height):... return base * height / 2...>>> # get_triangle関数を呼び出す>>> area = get_triangle(8, 10)>>> print(f'三角形の面 ...
もっと読む
Python勉強中 8章ユーザー定義関数 20230629
8章ユーザー定義関数8.1ユーザー定義関数の基本>>> base = 8>>> height = 10>>> area = base * height / 2>>> print(f'三角形の面積は{area}です。')三角形の面積は40.0です。>>>base = 8: 変数 base に値 8 を代入します。これは三角形の底辺の長さを表します。height = 10: ...
もっと読む
Python勉強中 7.5.4モジュール/クラスに含まれる要素を確認する 20230629
7.5.4モジュール/クラスに含まれる要素を確認する>>> import math >>> >>> print(dir(math)) ['__doc__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'comb', 'copysign', 'cos', 'cosh', ...
もっと読む
Python勉強中 7.5.3データ型を変換/判定するーーint/float関数など 20230628
7.5.3データ型を変換/判定するーーint/float関数など>>> print(bool(''))False>>> print(bool(150))True>>>>>> dec_num = int('10')>>> print(dec_num)10>>> print(type(dec_num))<class 'int'>>>>>>> # エラー>>> i_nume = int('1.414')Traceback (most recent call last): ...
もっと読む