Home > Net >  Does Jupyter Lab Not Support Match-Case Yet?
Does Jupyter Lab Not Support Match-Case Yet?

Time:11-11

I am working in Jupyter right now and I have just installed Python 3.10 on my local system. I was trying to implement a match-case in my Jupyter Notebook, but it does not seem to recognize this statement yet. Perhaps I am missing something, but how can I enable this feature?

CodePudding user response:

You can check if you are actually running on python 3.10 as follows:

from platform import python_version
print(python_version())
  • Related