--- Title: Pythonの基本 Author: hiragiuni Web: 'https://mimemo.io/m/3A2wRoNb7wo1zM6' --- 何のライブラリでもない基本系 # 関数 ``` def funcName ( any, ... ): continue; #内部処理 ``` def ... 関数の宣言 funcName ... 関数名 any ... 引数 (continue ... 処理なし) # クラス作成 ``` class className (): def __init__( self, ...): # イニシャライザ(必須) self.value1 = 100 ``` イニシャライザが必須。 イニシャライザの引数には self が必須。 ##