2024-04-21から1日間の記事一覧

Pythonの型ヒント・型指定の一覧

pythonの型ヒント・型指定の書式をまとめます余計な説明は省略して、書式だけ列挙します 変数に対する型ヒント name: str = "ABC" 関数に対する型ヒント 引数がint型、返り値がstr型 def func(x: int) -> str: return str(x) 複数の値を returnする場合 def …