if if True: print('Hello') # Hello if 10 and 9: # True나 False가 아니라 단락평가에 의해 9 print('hello') # hello if '': # F print('hello') if ' ': # T print('hello') # hello if []: # F print('hello') if -1: # T print("hello") # hello match text = 'Hello World' match text: case 'Hello': print('Hello') case 'World': print('World') case _: print('No Match') # 'No Match' text = 'Hello' match text: case 'Hello' ..