감동, 마음이 움직이는 것
[python] array type변경 본문
https://stackoverflow.com/questions/8855574/convert-ndarray-from-float64-to-integer
integer array만드는 법
>>> a = numpy.zeors(3, dtype=numpy.int64)
만약 a가 integer가 아닌 다른 type이었다면 astype을 통해서 integer형으로 바꿀 수 있다.
>>> a =
a.astype(numpy.int64)
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[python] replace characters in the string (0) | 2017.12.21 |
---|---|
[python] string안에 여러 특정 문자가 포함되어 있는지 알고 싶을 때 (2) | 2017.12.20 |
[awk] if문 사용하기 '{if (condition) } action" (0) | 2017.12.14 |
[python] string에서 특정 문자만 지우기 str.replace("before","") (0) | 2017.12.14 |
[벤다이어그램] 4개이상 집합의 벤다이어그램 (0) | 2017.12.14 |