How To Use Jupyter_client To Get The Execute Result?
I'd like to use jupyter_client to execute some python code and get result. Here's my sample code. But I could not get the output hello world, Could anyone help me ? Thanks import j
Solution 1:
The output wont be on the standard output, it will be in a result object. Check this snippet: https://www.snip2code.com/Snippet/1169700/sample-code-for-jupyter_client
Post a Comment for "How To Use Jupyter_client To Get The Execute Result?"