일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- vm
- python3.7
- golang
- VM 설정
- 티베로
- X11
- tac
- Linux
- VMware
- tablespace
- 코테
- CentOS
- Python
- 파이썬
- OPEN CURSOR
- DDL 추출
- 묵시적 커서
- 암시적 커서
- implicit
- 리눅스
- terraform
- db
- tibero
- X11 forwarding
- 프로그래머스
- Tuple
- vm tac 구성
- oracle
- tas tac
- 코딩테스트
Archives
- Today
- Total
줄기세포
[Python3.7 / 파이썬 마스터 / Code] 천단위마다(3자리) 콤마(,) 찍기 코드 본문
문제
- 숫자타입이 아니면 에러
- 3자리마다 콤마 찍기
코드(Code)
def commathree():
num = ''
while True:
try:
num = int(input("please enter number type: "))
num = str(num)
break
except ValueError:
print("not a number type!")
print(ValueError)
for i in range(0,len(num)):
print(num[i],end='')
if (len(num)-i)%3== 1 and i !=len(num)-1:
print(',',end='')
else:
continue
print()
함수 실행
>>> commathree()
please enter number type: 99
99
>>> commathree()
please enter number type: 1000
1,000
>>> commathree()
please enter number type: 1898128341293
1,898,128,341,293
>>> commathree()
please enter number type: hello
not a number type!
<class 'ValueError'>
please enter number type: 10.11
not a number type!
<class 'ValueError'>
please enter number type: 100
100
'Python' 카테고리의 다른 글
[Python 3.7 / 파이썬마스터 1급] 오늘이 올해의 몇번째 Day인가 (0) | 2023.06.24 |
---|---|
[Python 3.7 / 파이썬 마스터 1급] 최대값 최소값 구하기 (0) | 2023.06.23 |
[python3.7 / 파이썬 마스터] 모듈(module)이란 / 모듈 만들기 / 모듈 가져오기 (0) | 2023.06.20 |
[Python 3.7 / 파이썬 마스터] 컬렉션 자료형 - 리스트, 튜플, 딕셔너리, 집합 (List, Tuple, Dictionary, Set) (0) | 2023.06.19 |
[Python 기초 / 파이썬 마스터] ASCII char 변환, 2진수, 8진수, 16진수 변환 (0) | 2023.06.18 |
Comments