2019-10-29から1日間の記事一覧

mypyのLiteral typesのお供には--strict-equalityオプションを

Type hints pythonでも型を書きたいですよね。type hintsがあります。 これが def hello(name): return f"hello {name}!" こう。 def hello(name: str) -> str: return f"hello {name}!" 型が指定できます。 Literal types ところで型の指定は文字列型だけで…