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
- AnimationController
- tft api dart
- widget
- flutter ios 폴더
- dart.dev
- swift 동시성
- 롤토체스 api dart
- dart new
- 파이썬
- flutter statefulwidget
- swift concurrency
- Architectural overview
- flutter
- dart
- 롤 api dart
- keychain error
- flutter bloc
- riot api dart
- leetcode dart
- 파이썬 부동소수점
- generate parentheses dart
- docker overview
- dart new 키워드
- flutter widget
- PlatformException(sign_in_failed
- flutter android 폴더
- com.google.GIDSignIn
- 발로란트 api dart
- lol api dart
- valorant api dart
Archives
- Today
- Total
aspe
파이썬으로 부동 소수점의 오차를 확인해보자 본문
list = [i * 0.01 for i in range(1, 10000)]
for i in list:
if int(i * 100) != int(i * 100 + 0.5):
print(i, i * 100, int(i * 100), int(i * 100 + 0.5))
