Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gmolveau
GitHub Repository: gmolveau/python_full_course
Path: blob/master/exercices/match.py
305 views
1
#!/usr/local/opt/[email protected]/bin/python3
2
status_code = 418
3
NOT_FOUND = 404
4
match status_code:
5
case 200:
6
print("OK!")
7
case NOT_FOUND:
8
print("HTTP Not Found")
9