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
- grid-column-end
- box-shadow
- variables
- valuable
- foreach()
- localStorage
- grid-column-start
- className
- Grid
- React
- relative
- javascipt
- gird-row-end
- python #qqplot #qq-plot #code
- border-style
- react-hook-form
- confirm()
- var
- CSS
- grid-row-start
- javascript
- scope
- createElement
- mongodb
- prompt()
- package.json
- collapsing-margins
- grid-template-areas
- classList
- css#cascading#display#block#inline
Archives
- Today
- Total
data life
파이썬 - 숫자 자료형 본문
1. 숫자 계산 : 정수(int)
연산자 | |
덧셈 | + |
뺄셈 | - |
곱셈 | * |
나눗셈 | / -> 실수 반환(ex> 4 / 2 = 2.0) |
버림 나눗셈 | // -> 소수점 이하 버림 |
나머지 | % |
거듭 제곱 | ** |
💡추가
divmod( , ) : 몫과 나머지 함께 구함
1-1. 정수 변환
- int(숫자)
- int(계산식)
- int('문자열')
2. 숫자 계산 : 실수(float)
계산은 정수와 같으며 실수와 정수를 함께 계산하면 표현 범위가 넓은 실수로 계산
2-1. 실수 변환
- float(숫자)
- float(계산식)
- float('문자열')
3. 숫자 계산 : 복소수(complex)
허수부는 숫자 뒤에 j를 붙임
변환 시, complex() 이용