Create ipython_start/startup.py
Browse files- ipython_start/startup.py +3 -0
ipython_start/startup.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This will run every time an IPython (or Jupyter) kernel starts
|
| 2 |
+
def hello():
|
| 3 |
+
print("Right on baby jay! Hello from IPython startup!")
|