How to use autoclose brackets in Jupyter notebook?

删除回忆录丶 提交于 2021-02-08 15:53:36

问题


This may sound like a silly question, but how do I make use of the autoclose brackets in Jupyter notebook? For example, when I type

print(

Jupyter notebook auto-closes the brakets

print()

and places the cursor inside. Then I could type the argument, say

print(1 + 1)

now my cursor is between the second 1 and the right bracket ). What is the key to navigate to the right of )?

Of course I can press End or or even ) to achieve this, but it does not seem to save time, which is the purpose of the brackets autoclose I suppose?

Thanks in advance.

来源:https://stackoverflow.com/questions/36777958/how-to-use-autoclose-brackets-in-jupyter-notebook

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!