################################################################
# There is no 'Switch' statement in Python, but we can use the following example to simulate switch case.
# We can use dictionary in python to simulate the switch case
################################################################
def f1():
print("Hello f1")
def f2():
print("Hello f2")
funcdict = {
0: f1,
1: f2
}
selection = 1
funcdict.get(selection)()
No comments:
Post a Comment