In 2021 Python gained the switch case possibility. I am writing this in 2023. It appears this feature does not work on CC?
weight = 185
planet = 3
# Write an if statement below:
match weight:
case 185:
print('Success')
In 2021 Python gained the switch case possibility. I am writing this in 2023. It appears this feature does not work on CC?