In recent versions of MATLAB, one can execute a code region between two lines starting with %% using Ctrl-Enter. Such region is called a code cell, and it allows for fast code testing and debugging.
E.g.
<!-- language: MATLAB -->
%% This is the beginning of the 1st cell
a = 5;
%% This is the end of the 1st cell and beginning of the 2nd cell
% This is just a comment
b = 6;
%% This is the end of the 2nd cell
Are there any python editors that support a similar feature?
EDIT: I just found that Spyderlib supports "block" execution (code regions separated with blank lines) with F9, but as the this thread mentions, this feature is still not very robust (in particular in combination with loops).
unittestnordoctest(I'll take a look at them).Cell modein MATLAB is useful because it allows you to evaluate code while editing it by just pressingCtrl + Enteranytime. The location of the cursor determines what cell (lines of code) is sent to the interpreter, and the state of the variables is kept between cell evaluations. In other words, the use of cells allows you to grow and test your code very organically by grouping lines into 'functional' blocks. – user815423426 Jul 16 '11 at 21:06