일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- list
- gas
- SQL
- 파이썬
- Kotlin
- PostgreSQL
- Github
- dataframe
- math
- google apps script
- Python
- PySpark
- hive
- GIT
- PANDAS
- array
- Redshift
- Tkinter
- Google Spreadsheet
- Apache
- Java
- numpy
- Google Excel
- matplotlib
- Excel
- c#
- string
- django
- Mac
- Today
- Total
목록Operator (2)
달나라 노트
논리 연산자에 대해 알아봅시다. 논리 연산자라고 하면 and, or, not을 의미합니다. Operator Description Example A && B and A와 B 모두 true여야만 true return A와 B 중 하나라도 false라면 false return true && true -> true true && false -> false false && true -> false false && false -> false || or A와 B 중 하나라도 true라면 true return A와 B 모두 false여야만 false return true && true -> true true && false -> true false && true -> true false && false -> false..
여러 가지 비교 연산자에 대해 알아봅시다. 비교 연산자는 주로 2개의 값이 같은지, 다른지, 둘 중 뭐가 더 큰지 등을 비교하는 연산자입니다. Google Apps Script는 Javascript를 기반으로 하는 언어이기 때문에 일반적인 연산자는 보통 Javascript에서 사용하는 것과 비슷할 것입니다. Operator Description Example A == B A와 B의 값이 같으면 true 1 == 1 -> true 1 == '1' -> true 1 == 2 -> false A === B A와 B의 값과 data type까지 같으면 true 1 === 1 -> true 1 === '1' -> false 1 === 2 -> false A != B A와 B의 값이 다르면 true 1 != 1 -..