Python Tutor: Visualize code in Python, JavaScript, C, C++, and Java
링크 : https://pythontutor.com/python-compiler.html#mode=edit
Python 등 프로그래밍 언어가 계산되는 과정을 보여준다 (good!)
def cal(a, b):
print(a, b)
ans=a+b
return ans
print(cal(b=3, a=5))
# 02
# 03
# 03
# 04
# 05
# 06
# 07
Reference
[1] https://pythontutor.com/