[ Python 독학 ] (2) Python output 함수, Indentation 들여쓰기

2021년 01월 05일 by Coco___

    [ Python 독학 ] (2) Python output 함수, Indentation 들여쓰기 목차
728x90
반응형

비전공자의 파이썬 독학글입니다. 

공부한 내용을 복습하는 목적입니다.

 

 

 

 

1. Python output에 대하여. 

2. Python Indentation (들여쓰기)

 

파이썬에서의 들여쓰기는 다른 코드와는 다르게 

코드의 Error 를 유발 할 수 있다. 

 

즉 C++ 등 다른 언어에서의 들여쓰기는 가독성을 

좋게 하기 위해서이지만, Python에서는 오류를 유발한다. 

 

Python에서의 들여쓰기는 Block of code를 의미한다. 

 

 

 

Example

if 5 > 2:
  print("Five is greater than two!")
if 5 > 2:
print("Five is greater than two!")

 

 

다음 두개의 코드의 차이는 무엇일까. 

바로 들여쓰기이다. (indentation)

 

print 라는 output 함수 앞에 띄어쓰기가 필요하다. 

 

또한, 추가로 같은 code block 안에서는 

같은 수의 띄어쓰기가 필요하다. 

 

즉,  다음과 같은 함수는 Error 를 유발한다. 

 

if 5 > 2:
 print("Five is greater than two!")
        print("Five is greater than two!")

 

 

옳게 고치려면 아래와 같이 수정해주어야 한다. 

if 5 > 2:
 print("Five is greater than two!")
 print("Five is greater than two!")

 

 

 

 

참고 홈페이지

Python Syntax (w3schools.com)

 

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

 

728x90
반응형