[Python] 화씨 온도 변환프로그램
사용하지않는공간/Python2020. 8. 2. 15:55[Python] 화씨 온도 변환프로그램

c_num = input("변환하고 싶은 섭씨온도를 입력하세요:" ) print("화씨온도: "+str((int(c_num)*1.8)+32))

[Python] Anaconda3 설치해서 쥬피터노트북으로 파이썬 사용하기
사용하지않는공간/Python2020. 8. 2. 14:43[Python] Anaconda3 설치해서 쥬피터노트북으로 파이썬 사용하기

아나콘다란? https://www.anaconda.com/products/individual Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 우선 아나콘다 사이트에 들어가 설치를 해줍니다. 그다음 Jupyter Notebook (anaconda3)를 실행하면 dos창에 localhost로 실행이되고 Jupyter사이트가 열려 사용할 수 있게 됩니다. New -> Python 3를 눌러 새 노트북을 열고 사용하면됩니다. 코드를 입력..

image