Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to step over list comprehension in pycharm?

I am new to Python and Pycharm,

I am trying to step over a line with list comprehension,

but instead of moving me to the next line, pycharm is incrementing the loop in 1 iteration.

any ideas how to move to the next line without pushing F8 3000 times?

thanks!

like image 966
Binyamin Even Avatar asked Oct 30 '22 14:10

Binyamin Even


1 Answers

PyCharm has 'Run to Cursor' option - just move your cursor one line down and hit it.

like image 118
Lav Avatar answered Nov 09 '22 12:11

Lav