-
-
Save phase7/a295f1b4a18d223aa8e453197c0fee37 to your computer and use it in GitHub Desktop.
Hide a single cell in Jupyter notebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from IPython.display import HTML | |
from IPython.display import display | |
# Taken from https://stackoverflow.com/questions/31517194/how-to-hide-one-specific-cell-input-or-output-in-ipython-notebook | |
tag = HTML('''<script> | |
code_show=true; | |
function code_toggle() { | |
if (code_show){ | |
$('div.cell.code_cell.rendered.selected div.input').hide(); | |
} else { | |
$('div.cell.code_cell.rendered.selected div.input').show(); | |
} | |
code_show = !code_show | |
} | |
$( document ).ready(code_toggle); | |
</script> | |
To show/hide this cell's raw code input, click <a href="javascript:code_toggle()">here</a>.''') | |
display(tag) | |
############### Write code below ################## |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment