Answers for "is there a thing like switch case in python"

0

python switch

# Python 3.10.0 +
match subject:
    case <pattern_1>:
        <action_1>
    case <pattern_2>:
        <action_2>
    case <pattern_3>:
        <action_3>
    case _:
        <action_wildcard>
Posted by: Guest on January-14-2022

Python Answers by Framework

Browse Popular Code Answers by Language