Download presentation
Presentation is loading. Please wait.
Published by애리 진 Modified 8년 전
1
Python 시작하기 빛나리 36 호 3/24
2
Python 이란 ? 생산성이 뛰어나고 간단하다. 다른 언어에 비해 쉽다. 오픈소스이다. 라이브러리가 많다. 빅데이터의 처리에 좋다. BitTorrent 문명, wow, google
3
Python 설치하기 Https://www.python.org/ 3.5.1 버전 설치
4
Python 설치하기 Add Python 3.5 to PATH 체크하기
5
Python 설치하기 실행 프로그램인 Powershell 실행
6
Python 설치하기 Python 을 입력하고 이렇게 뜨면 설치성공 !
7
Notepad++ 설치하기 홈페이지 https://notepad-plus-plus.org/https://notepad-plus-plus.org/ 네이버 자료실에서 받아도 됨
8
Hello! Print(‘Hello!’) test.py 로 저장하기 Powershell 에서 ls, cd 명령어 활용하기 Python test.py 명령어로 실행하기
9
변수란 ? 변수 (variable) : 값이 특정 지어지지 않아 임의의 값을 가질 수 있는 문자 수학에서 미지수 X 변수에 들어있는 문자 or 숫자가 변수의 이 름을 대신한다.
10
변수사용하기 Print(‘Hello!’) 를 a=‘Hello!’ Print(a) 로 바꾸기 실행 결과는 같다
11
변수 여러개 사용하기 a=‘Hello!’ b=‘World!’ print(a,b)
Similar presentations