반응형
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 |
Tags
- SQL
- GIT
- Redshift
- Kotlin
- array
- matplotlib
- django
- Tkinter
- Java
- Google Spreadsheet
- Excel
- google apps script
- Google Excel
- Mac
- PANDAS
- hive
- list
- gas
- math
- Apache
- c#
- string
- numpy
- dataframe
- Github
- PySpark
- Python
- PostgreSQL
- 파이썬
Archives
- Today
- Total
목록자연상수 e (1)
달나라 노트
Python numpy : pi, nan, e (원주율, nan, 자연상수)
import numpy as np print(np.pi) print(np.nan) print(np.NaN) print(np.NAN) print(np.e) -- Result 3.141592653589793 nan nan nan 2.718281828459045 numpy의 pi는 원주율(파이) 값을 return합니다. numpy의 nan은 NaN값(null값)을 return합니다. NaN, NAN은 nan의 별칭입니다. numpy의 e는 자연상수 값을 return합니다.
Python/Python numpy
2021. 3. 29. 22:07