반응형
파이썬 구문을 작성하던 도중
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): 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...
반응형
'Data Analysis > Python' 카테고리의 다른 글
[Python] Pandas: 한 셀의 데이터를 여러 행으로 나누기 (0) | 2023.01.06 |
---|---|
[Python] Python에서 youtube 불러오기 (0) | 2023.01.06 |
[Airflow] Airflow 설치법(LOCAL) - 도커랑 vs code 필요 (0) | 2023.01.04 |
[Airflow] The Complete Hands-On Introduction to Apache Airflow (0) | 2023.01.03 |
Pandas Cheatsheet: 125+ exercises (0) | 2022.12.29 |
댓글