Answers for "switch statements python"

55

switch statements python

# Here is one way to implement a switch construct
# Switcher is a dictionary data type here
def week(i):
    switcher={
        0:'Sunday',
        1:'Monday',
        2:'Tuesday',
        3:'Wednesday',
        4:'Thursday',
        5:'Friday',
        6:'Saturday'
    }
    return switcher.get(i,"Invalid day of week")

print(week(5)) # Call the function
Posted by: Guest on June-16-2020
-2

swtich statement python

def f(x):
    return {
        'a': 1,
        'b': 2,
    }[x]
Posted by: Guest on June-01-2020

Code answers related to "switch statements python"

Python Answers by Framework

Browse Popular Code Answers by Language