본문 바로가기

전체 글97

atom 설치 1. 구글에 atom 검색 2. atom.io -> Other platforms 클릭 3. atom-windows.zip 설치 4. C드라이브 dev에 atomworkspace폴더 생성 5. atom에서 file- settings - install에서 Hydrogen 검색 후 설치 6. 닫은 후 file에서 add project file - atomworkspace 7. ctrl + \ = 프로젝트 작업창 생성 8. project에서 New file 생성 ( text.py ) 9. ctrl + enter 하면 바로 결과 출력 10. ctrl + shift + backspace 하면 작업 뒤로 돌리기 2021. 6. 17.
파이썬 300제 (1) https://wikidocs.net/7014 위키독스 온라인 책을 제작 공유하는 플랫폼 서비스 wikidocs.net 1-10 코딩 연습 print 기초 # 1.화면에 Hello World 문자열을 출력하세요. print("Hello World") # 2.화면에 Mary's cosmetics을 출력하세요. (중간에 '가 있음에 주의하세요) print("Mary's cosmetics") # 3.화면에 아래 문장을 출력하세요. (중간에 "가 있음에 주의하세요.) print('신씨가 소리질렀다. "도둑이야".') # 4.화면에 "C:\Windows"를 출력하세요. print('"C:/Windows"') # 5.print("안녕하세요.\n만나서\t\t반갑습니다.") print("안녕하세요.\n만나서\t\t반갑.. 2021. 6. 16.
w3 scools 튜토리얼 (1) 파이썬 코딩 연습하기 https://www.w3schools.com/python/python_syntax.asp Python Syntax Python Syntax Execute Python Syntax As we learned in the previous page, Python syntax can be executed by writing directly in the Command Line: >>> print("Hello, World!") Hello, World! Or by creating a python file on the server, using the .py file extension www.w3schools.com 파이썬 튜토리얼 -> 코딩 연습 PRINT 연습 1. Hello, world! 출력.. 2021. 6. 16.
Anaconda 다운로드 Anaconda | Get Started Anaconda | Get Started Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities. www.anaconda.com 다운로드 -> 경로설정 -> dev에 JupyterNotebook 폴더 생성 -> 기본으로 설치 -> "Add Anaconda to my PATH environment variable" 옵션 선택 - 명령프롬프트 실행 - cd C:\dev\JupyterNotebook 입력 - jupyter notebook 입력 -몇일간은 JupyterNote.. 2021. 6. 16.