변수 및 데이터 유형
Python 동적으로 유형이 지정되는 프로그래밍 언어이므로 사용하기 전에 변수 유형을 선언할 필요가 없습니다. 다음은 변수 선언 및 일부 공통 데이터 유형의 예입니다.
변수 선언:
variable_name = value
일반적인 데이터 유형:
- 정수(
int
):age = 25
- 부동 소수점 숫자(
float
):pi = 3.14
- 문자열(
str
):name = "John"
- 부울(
bool
):is_true = True
조건문
의 조건문은 Python 조건을 확인하고 평가 결과에 따라 명령문을 실행하는 데 사용됩니다., 및(else if) 구조 if
는 다음과 같이 사용됩니다. else
elif
if
성명:
if condition:
# Execute this block if condition is True
else
성명:
else:
# Execute this block if no preceding if statement is True
elif
(else if
) 성명:
elif condition:
# Execute this block if condition is True and no preceding if or else statement is True
루프
Python 일반적으로 사용되는 두 가지 루프 유형인 for
루프와 while
루프를 지원하여 문을 반복적으로 실행할 수 있습니다.
for
고리:
for variable in sequence:
# Execute statements for each value in the sequence
while
고리:
while condition:
# Execute statements while the condition is True
구체적인 예:
# Variable declaration
age = 25
name = "John"
# Conditional statement
if age >= 18:
print("You are of legal age.")
else:
print("You are not of legal age.")
# Loop
for i in range(5):
print("Hello there!")
count = 0
while count < 5:
print("Loop number:", count)
count += 1
실행되면 위의 코드는 나이를 확인하고 적절한 메시지를 인쇄한 다음 루프 Hello there!
를 사용하여 메시지를 5번 반복 for
하고 마지막으로 루프 값을 인쇄합니다 while
.