반응형
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
- Google Excel
- GIT
- Excel
- 파이썬
- Tkinter
- PANDAS
- gas
- Github
- Apache
- string
- Redshift
- Mac
- math
- Google Spreadsheet
- list
- array
- django
- numpy
- google apps script
- SQL
- hive
- PySpark
- PostgreSQL
- Python
- matplotlib
- dataframe
- Kotlin
- c#
- Java
Archives
- Today
- Total
목록Google Spreadsheet Script (1)
달나라 노트
Google Apps Script : Logger.log, console.log (print, console print)
일반적인 프로그래밍 언어에서 배우는 가장 첫 번째 기능은 보통 콘솔/터미널 화면에 특정 값을 출력하는 기능입니다. Python이면 Print일 것이고, C#이라면 Console.WriteLine일 것입니다. Google Script에서도 이와같은 기능을 제공합니다. Syntax Logger.log(value); console.log(value); 사용법은 위와 같으며 매우 간단합니다. log method에 출력하고 싶은 값을 넣어주면 됩니다. 위 2개 함수는 동일하게 log창에 원하는 내용을 표시해주는 기능을 제공합니다. function myFunction() { var test_value = 10; Logger.log(test_value); } 위 코드를 실행하면 로그 창에서 log method에 전달..
Google Apps Script
2022. 6. 4. 14:04