How to make section in pycharm

后端 未结 2 1484
予麋鹿
予麋鹿 2021-01-19 16:48

I have just moved to Python from R. In R you can use

#new section####

to have the \'new section\' as title in the

相关标签:
2条回答
  • 2021-01-19 17:38

    PyCharm also allows you to set anonymous and labeled bookmarks for navigating your source code. Their version of a jump-to menu is the Favorites window, which you can display using the View menu:

    View --> Tool Windows --> Favorites

    0 讨论(0)
  • 2021-01-19 17:53

    See Using code folding comments

    For Python files:

     #region Description
     ...
     #endregion
    
    0 讨论(0)
提交回复
热议问题