python6 python 문자열 인덱싱 *인덱싱의 의미 python에서 문자열 인덱싱을 해봅시다! >>> a = "hello world" >>> a 'hello world' a의 값은 아래의 형식으로 되어 있습니다! h e l l o w o r l d 0 1 2 3 4 5 6 7 8 9 10 a의 0번째 위치의 값 = "h" >>> a[0] 'h' a의 10번째 위치의 값 = "d" >>> a[10] 'd' 만약 a[-1]의 값을 넣게 된다면? 문자열에 가장 마지막 값을 선택하게 된다! >>> a[-1] 'd' 2020. 5. 27. Python 자료형 1. int형 >>> number = 10 >>> type(number) >>> number = int(10) >>> type(number) 2. float형 >>> number = 10.0 >>> type(number) >>> number = float(10) >>> type(number) 3. bool형 - True, False >>> result = True >>> type(result) >>> result = False >>> type(result) >>> result = bool(1) >>> type(result) >>> result True >>> result = bool(100) >>> type(result) >>> result True >>> result = bool(0) >>> type(.. 2020. 5. 27. 이전 1 2 다음