-
Beta Was this translation helpful? Give feedback.
Answered by
seeM
Jul 1, 2024
Replies: 1 comment 9 replies
-
Variables aren't currently shared between the console session and a notebook session. The console is intended to be used with ordinary Python scripts. You can press Cmd+Enter (or Ctrl+Enter) to execute the statement under the cursor in the console and advance through a script. You can also add |
Beta Was this translation helpful? Give feedback.
9 replies
Answer selected by
AJajodia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Variables aren't currently shared between the console session and a notebook session.
The console is intended to be used with ordinary Python scripts. You can press Cmd+Enter (or Ctrl+Enter) to execute the statement under the cursor in the console and advance through a script. You can also add
# %%
markers to denote "cells" in your scripts, and advance through those with Shift+Enter.