[Python] 02.Python 스크립트 작성 방법
- Develop/Python
- 2020. 12. 29.
리눅스, 유닉스에서 파이선을 실행시 맨위에 스크립트 종류를 선언합니다. 물론 선언하지 않고도 수행은 가능합니다. 그러나 리눅스, 유닉스에서 실행되는 대부분의 스크립트는 맨위에 특정 스크립트를 실행하는 파일명을 입력합니다. 관련 내용은 아래에 있습니다.
https://myinfrabox.tistory.com/156?category=809520
지금부터 파이선 스크립트 작성 방법에 대해 알아보겠습니다.
■ 스크립트 선언
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
a = "python"
print(a[0]);
print(a[1]);
print(a[2]);
보시는바와 같이 맨위에 파이선 스크립트를 실행하는 실행부분을 선언합니다.
#!/usr/bin/env python3
그리고 이 파이선의 파일을 어떤 캐릭터셋으로 작성할지 선언합니다.
# -*- coding: utf-8 -*-
그리고 그 아래부터 파이선 소스 코드를 작성합니다.
지금부터 파이선 문법에 대해알아보도록 하겠습니다.
■ 파이선 다른 회차
[Python] Intro : Very Quick Python : https://myinfrabox.tistory.com/169
[Python] 01.Python 준비 : https://myinfrabox.tistory.com/170
[Python] 03.변수 선언 및 할당 : https://myinfrabox.tistory.com/172
[Python] 04.문자열 처리 : https://myinfrabox.tistory.com/173
[Python] 05.조건문 : https://myinfrabox.tistory.com/174
[Python] 06.반복문 : https://myinfrabox.tistory.com/175
[Python] 07.튜플(Tuple) : https://myinfrabox.tistory.com/176
[Python] 08.리스트(List) : https://myinfrabox.tistory.com/177
[Python] 09.사전(Dictionary) : https://myinfrabox.tistory.com/178
[Pytho] 10.set : https://myinfrabox.tistory.com/179
[Python] 11.함수(Function) : https://myinfrabox.tistory.com/180
[Python] 12.클래스(Class) : https://myinfrabox.tistory.com/181
[Python] 13.외부 클래스 사용하기 : https://myinfrabox.tistory.com/182
[Python] 14.파일처리 : https://myinfrabox.tistory.com/183
[Python] 15.MySQL Database : https://myinfrabox.tistory.com/184
'Develop > Python' 카테고리의 다른 글
[Python] 05.조건문 (0) | 2020.12.29 |
---|---|
[Python] 04.문자열 처리 (0) | 2020.12.29 |
[Python] 03.변수 선언 및 할당 (0) | 2020.12.29 |
[Python] 01.Python 준비 (0) | 2020.12.28 |
[Python] Intro : Very Quick Python (0) | 2020.12.28 |