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 |
Tags
- GUI
- 3d프린터
- 석사
- C언어
- 머신러닝
- 프로그래밍
- coding
- 딥러닝
- opencv
- 초보영어
- 파이썬
- 3dprinter
- 대학원
- 영어
- 인공지능
- 산업대학원
- Vision
- 직장인
- 파이썬gui
- 오픽
- 동사
- machinevision
- 코딩
- 머신비전
- 4차산업
- ComputerVision
- 특수대학원
- 영어공부
- 문자열
- Python
Archives
- Today
- Total
미래기술연구소
str() , int() 본문
728x90
반응형
my_int = 1
float(my_int)
print(float(my_int))
1.0
str(my_int)
print(str(my_int))
1
type(str(my_int))
print(type(str(my_int)))
<class 'str'>
my_str = "coding"
list(my_str)
print(list(my_str))
['c', 'o', 'd', 'i', 'n', 'g']
728x90
반응형
'programming > Python' 카테고리의 다른 글
딕셔너리 { Dictionary, dict } (0) | 2020.06.15 |
---|---|
자료형 (0) | 2020.06.15 |
리스트 [ List ] (0) | 2020.06.15 |
문자열 (0) | 2020.06.11 |
Boolean, 비교연산자 / 논리연산자 (0) | 2020.06.10 |