Google Colaboratoryでもmatch caseの文は使えるのでしょうか. 使えるならどのようにすればいいのでしょうか.
Q&A
Closed
解決したいこと
python初心者です。Google Colaboratoryを使って, pythonの入門書のコードをコピーしながら学習しいます.
match caseの文は他の種類のものも試したのですが, 全部同じエラーが出ます. Google Colaboratoryを使っているからなのでしょうか. Google Colaboratoryでもmatch caseの文は使えるのでしょうか. 使えるならどのようにすればいいのでしょうか.
発生している問題・エラー
File "<ipython-input-1-89699ce9a65b>", line 2
match status:
^
SyntaxError: invalid syntax
該当するソースコード
def http_error(status):
match status:
case 400:
return "Bad request"
case 404:
return "Not found"
case 418:
return "I'm a teapot"
case _:
return "Something's wrong with the Internet"
自分で試したこと
match caseの文は他の種類のものも試したのですが, 全部同じエラーが出ます. Google Colaboratoryを使っているからなのでしょうか. Google Colaboratoryでもmatch caseの文は使えるのでしょうか. 使えるならどのようにすればいいのでしょうか.
0