자료형 - List
#리스트 : 객체들의 순서가 있는 모임Collection#[], len(), max(), min(), count()a_list = [1,2,3]print("Output #58: {}".format(a_list))print("Output #59: {}".format(len(a_list)))print("Output #60: {}".format(max(a_list)))print("Output #61: {}".format(min(a_list)))another_list = ['printer',5,['star','circle',5]]print("Output #62: {}".format(another_list))print("Output #63: {}".format(len(another_list)))print("Out..
2018. 2. 13.
Hello python, ipynb 파일 py 파일로 만들기, 실행, 자료형
jupyter notebook을 열고 하단의 스크립트를 작성하여 first_script.ipynb로 저장하고 실행한다print("Output #1: hello python")Output #1: hello python x=4y=5z=x+yprint("Output #2: four plus five equals {0:d}.".format(z))Output #2: four plus five equals 9. a=[1,2,3,4]b=["first","second","third","fourth"]c=a+bprint("Output #3: {0},{1},{2}".format(a,b,c))Output #3: [1, 2, 3, 4],['first', 'second', 'third', 'fourth'],[1, 2, 3, 4..
2018. 1. 9.