대화형 인터프리터 emulating1 Emulating Python's interactive interpreter ※ 코드 실행 중 대화형 인터프리터 호출 # Emulating Python's interactive interpreter ''' # python 에뮬레이트 import code code.interact() ''' ''' # Example for IPython import IPython IPython.embed() ''' ''' # Example for bpython import bpython bpython.embed() ''' ''' # Example for ptpython from ptpython.repl import embed embed(globals(), locals()) ''' 2022. 11. 8. 이전 1 다음