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.