반응형
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 |
Tags
- Tkinter
- PostgreSQL
- c#
- Excel
- hive
- gas
- Redshift
- Apache
- google apps script
- matplotlib
- dataframe
- Google Spreadsheet
- math
- Mac
- Kotlin
- string
- PySpark
- Python
- Google Excel
- django
- SQL
- numpy
- Github
- PANDAS
- 파이썬
- array
- GIT
- list
- Java
Archives
- Today
- Total
목록분류 전체보기 (832)
달나라 노트
Google Apps Script : Number.MAX_VALUE, Number.MIN_VALUE (표시 가능한 최대값, 표시 가능한 양의 최소값)
Number 객체의 MAX_VALUE는 GAS에서 표시할 수 있는 최대값을 return합니다. Number 객체의 MIN_VALUE는 GAS에서 표시할 수 있는 0보다 큰 최소값을 return합니다. function myFunction(){ Logger.log(Number.MAX_VALUE); } -- Result 1.7976931348623157E308 - Number.MAX_VALUE Number 객체의 MAX_VALUE는 표시 가능한 최대값을 return합니다. 1.7976931348623157E308 그 결과를 보면 위와 같은데 이를 다시 쓰면 아래와 같습니다. 1.7976931348623157 * 10^308 - Number.MIN_VALUE Number 객체의 MIN_VALUE는 표시 가능한 ..
Google Apps Script
2022. 11. 30. 19:51
Google Apps Script : Math.E (자연상수, e, Euler Number)
Math 객체의 E 속성은 자연상수(Euler Number)를 return합니다. function myFunction(){ Logger.log(Math.E); } -- Result 2.718281828459045
Google Apps Script
2022. 11. 30. 19:45
Google Apps Script : Math.PI (PI, 파이값, 원주율)
Math 객체의 PI는 원주율값을 return합니다. function myFunction(){ Logger.log(Math.PI); } -- Result 3.141592653589793
Google Apps Script
2022. 11. 30. 19:43