반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- string
- Tkinter
- PostgreSQL
- SQL
- list
- gas
- Google Excel
- Python
- Excel
- math
- dataframe
- matplotlib
- c#
- array
- Redshift
- google apps script
- Java
- hive
- Mac
- Github
- 파이썬
- PANDAS
- django
- Google Spreadsheet
- numpy
- PySpark
- GIT
- Apache
- Kotlin
Archives
- Today
- Total
달나라 노트
Pycharm : 천단위 언더바 해제, 천단위 underscore 해제 본문
728x90
반응형
간혹 Pycharm이나 DataGrip을 사용할 때 코드에 긴 숫자가 들어있으면 아래처럼 표시되는 경우가 있습니다.
123_456_789
원래 제가 입력한 숫자는 123456789였으나 Pycharm이나 DataGrip 자체에서 그냥 표시를 위처럼 해주는 것이죠.
숫자의 천단위마다 underscore(_)를 표시해줍니다.
실제 텍스트는 123456789로 인식되어서 코드의 사용에는 전혀 문제가 없는데 저 숫자가 가격이 아닌이상에야 천단위 표시가 되는건 오히려 가독성을 떨어뜨릴 수 있습니다.
이걸 설정하려면 아래와 같은 메뉴에서 가능합니다.
Pycharm Preference -> Editor -> General -> Code Folding -> Long string literals를 체크 해제
Long string literals라는 메뉴를 체크 해제하면 위같이 천단위 콤마가 표시되지 않습니다.
728x90
반응형
'Python > Python ETC' 카테고리의 다른 글
Pycharm interpreter 설치하기 (0) | 2022.02.17 |
---|---|
Pycharm : Pycharm 줄바꿈, 자동 줄바꿈, soft wrap (0) | 2022.02.11 |
Python anaconda : anaconda python terminal commands (0) | 2022.02.11 |
Pycharm : commit view 조절, Pycharm commit code diff view (0) | 2022.02.11 |
Python psycopg2 : Error: pg_config executable not found (psycopg2 설치 에러) (0) | 2022.02.10 |
Comments