使用Pycharm设置自动换行,需要打开Pycharm的设置窗口,在设置窗口中,找到Editor选项,在Editor选项下,找到Code Style,在Code Style选项下,找到Wrapping and Braces,在Wrapping and Braces选项下,找到Line Breaks and Wrapping,在Line Breaks and Wrapping选项下,点击Do not wrap,将Do not wrap的勾选框取消,点击Wrap if long,将Wrap if long的勾选框勾选上,点击Wrap on typing,将Wrap on typing的勾选框勾选上,点击OK,完成自动换行的设置。
1.打开Pycharm的设置窗口,找到Editor选项,在Editor选项下,找到Code Style,在Code Style选项下,找到Wrapping and Braces;
2.在Wrapping and Braces选项下,找到Line Breaks and Wrapping,在Line Breaks and Wrapping选项下,点击Do not wrap,将Do not wrap的勾选框取消;
3.点击Wrap if long,将Wrap if long的勾选框勾选上;
4.点击Wrap on typing,将Wrap on typing的勾选框勾选上;
5.点击OK,完成自动换行的设置。
int a = 1; int b = 2; int c = a + b;
使用自动换行设置之后,代码看起来更加美观,如下:
int a = 1; int b = 2; int c = a + b;
本文链接:http://task.lmcjl.com/news/1507.html