Cell Mode execution
CTRL+Q inlinehelp - PIN this
In [1]:
# % jupyter qtconsole
%connect_info
In [2]:
import qtconsole
# %qtconsole
# jupyter qtconsole
%qtconsole
In [3]:
for i in range(0,5):
print(i)
In [4]:
import matplotlib.pyplot as plt
plt.plot([1,2,3], [1,3,4], marker='o', markersize=14, markerfacecolor='red',
linewidth=2, markeredgewidth=2)
plt.title('plotTitle', fontname='Comic Sans MS', fontsize=28)
plt.show()
print('plotshown')
See Settings->Editor->General->Smart Keys CTRL+SHIFT+A SEARCh actions CTRL+ALT+INSERT paste from memory
In [4]: