파이썬기초 조건문

김재민·2022년 1월 18일
0
post-thumbnail
post-custom-banner

블록

블록 : 프로그램이나 스크립트 내의 문장 그룹

들여쓰기 코드

블록정의를 들여쓰기 문법을 이용해서 구성
들여쓰기 문장은 필수

Block1
	Block 2
		Block 3
	Block 2, continuation
Block1, continuation

변수의 특징

 입력을 받습니다.
  number = input("정수 입력>")
  number = int(number)
  
 
 #양수 조건
 if number > 0:
  print("양수입니다")
 
 #음수 조건
 if number < 0:
  print("양수입니다")
 
 # 0 조건
 if number == 0:
  print("0입니다")
 

if-else-if-else

 If 조건식 1 :
 	If 조건식 2 :
    	실행할문장1
    else :
    	실행할 문장2
 else :
 	실행할 문장3
 

if-elif-else //else if 와 같음

 If 조건식 : 
 	실행문장1
 elif 조건식 :
 	실행문장2
 else : 
 	실행문장3

예제)

>>> x = int(input("정수를 입력하세요:"))
정수를 입력하세오 : 42
>>> if x < 0 :
print(음수를 영으로 변경하였습니다.)
elif x == 0 :
print('영')
elif x == 1 :
print('일')
else : 
print(' 그이상')

profile
어제의 나보다 나은 오늘의 내가 되자!🧗‍♂️
post-custom-banner

0개의 댓글