[Python] Python Visualizer

JAsmine_log·2024년 7월 7일
0

Python Viusalizer

예시 코드

  • 코드 입력(python) > Visualize Execution

def cal(a, b):
    print(a, b)
    ans=a+b
    return ans

print(cal(b=3, a=5))

Execution

  • Step별로, 코드 연산 과정을 가시화하여 보여준다.
    • Fist, Prev(ious), Next, Last 로 이동
      # 01

# 02

# 03

# 03

# 04

# 05

# 06

# 07


Reference
[1] https://pythontutor.com/

profile
Everyday Research & Development

0개의 댓글