🐍 python switch

python

fukurou

the supreme coder
ADMIN
Python:
'''switch'''
n:str = "test"
match n:
    case 'hello':
            print("hi there!")
    case 'y':
            print("y")
    case _:
            print("default case")
 
Top