본문 바로가기
Data Analysis/Python

[Python] 왜 For 문 옆에는 : 을 붙여야 할까?

by Hagrid 2023. 1. 5.
반응형

 

 

파이썬 구문을 작성하던 도중

For 문에서 : 를 붙이지 않는 실수를 반복 하고 있다는 사실을 깨달았다.

 

비단 for문 뿐만 아니라 while 문에서도 : 를 붙여야 하는데

그럼 왜 'For문'이나 'while문'에서 : 를 붙여야 하는 걸까 ???

 


약 10분간의 구글링을 통해서

검색 할 수 있었다.

 

구글 검색어는

why use colon in python for

 

파이썬 프로그래밍 언어의 구문에서 콜론의 역할은

코드 블록이 바로 뒤 따르고 있다는 시각적 표시기를 제공하는 것

 

콜론은 코드 블록이 바로 뒤따를 것이라는 명확한 알림을 제공

== 파이썬 코드를 훨 씬 더 쉽 게 읽을 수 있다,!!!

 

https://www.quora.com/What-is-the-role-of-a-colon-in-the-programming-language-Python

 

What is the role of a colon, in the programming language: Python?

Answer (1 of 4): To put it simply, the role of the colon in the Python programming language’s syntax, is to give a visual indicator that a code block is following directly afterward. For example: [code]name = [‘James’, ‘Ammy’, ‘Rebecca’] for

www.quora.com

 

What is the role of a colon, in the programming language: Python?

Answer (1 of 4): There are two uses of colons in Python. 1. Indicating a code block. For example: [code]if n > 1: print(“Hello World”) else: pass n+=1 [/code]Here it shows that the line that prints “Hello World” should be executed when the if statement is satisfied. Basically, Python us...

 

 

 

 

 
반응형

댓글