Basically I want to copy (Ctrl+C) only the code portions from multiple cells without also copying the output or the In[1]:
and Out[1]:
What is
In jupyter you can copy several cells or the content of one cell. If you follow @BenWS comment you can copy several cells, and if you do kernel
> restart & clear outputs
beforehand you woult not get the [out]
. Shortcut is C
for copy cell and V
shift + V
to paste below / above.
However if you intend to copy several cells content, you should merge then before by select them and shift + M and then you can copy paste with ctrl + C
.