16
- Python Docker scaffoldy service to make the generation of docker template files easier
- Python 3.10 case statements Structural Pattern Matching - Exciting New Python Feature 3.10
New case statements
x = "hello"
match x:
case "hello":
print("hello")
case "hi":
print("hi")
case _:
print("default case")