히바리 쿄야 와 함께 하는 Developer Cafe
콘솔창 실습 로그 내용 t1 = (1,2,'a','b') t1[0] Out[3]: 1 t1[3] Out[4]: 'b' t1 = (1,2,'a','b') t1[1:] Out[6]: (2, 'a', 'b') t2 = (3,4) t1 + t2 Out[8]: (1, 2, 'a', 'b', 3, 4) t2 = (3,4) t1 + t2 Out[10]: (1, 2, 'a', 'b', 3, 4) t2 * 3 Out[11]: (3, 4, 3, 4, 3, 4) t1 = (1,2,'a','b') len(t1) Out[13]: 4 a1 = (1,2,3) a1 + (4) Traceback (most recent call last): File "", line 1, in a1 + (4) TypeError: can only conc..
실습 IDE 스파이더 www.spyder-ide.org/ -> 다운로드 설치하면 됨 # -*- coding: utf-8 -*- """ Created on Fri Feb 5 15:12:26 2021 @author: SONG """ #hello.py print("hello world"); #multistring.py print("=" * 50) print("My Program") print("=" * 50) 콘솔창 로그 실습 a = "Life is too short, you need Python" a[0] Out[2]: 'L' a[12] Out[3]: 's' a[-1] Out[4]: 'n' b = a[0] + a[1] + a[2] + a[3] b Out[6]: 'Life' a[0:4] -> a의 0번째 배열..
INDIGO HOME WE ARE WORK BLOG CONTACT US WE ARE Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. HOME Lorem Ipsum is simply dummy text of the printing and typesetting industry. WE ARE Lorem Ipsum is simply dummy text of the printing and typesetting industry. WORK Lorem Ipsum is simpl..