I am new to python and Ipython . I want to debug code in my Ipython notebook and want to find out total number of steps/iterations. But i don't know how to do debug. I have watched youtube videos but that showed debugging in pycharm but i am unable to find any proper video with significant detail in regards to Ipyhton.
My code is below
for i in range(4):
for j in range(i+1):
print('*',end='')
print()