Python 문법(1)
python 숫자형
다른 형들을 c언어와 비슷하고 2의 제곱을 할 때는 다음과 같다.
print(2 ** 2)
python 문자형
-
print를 할 때 문자 와 숫자를 같이 출력하는 방법
print('안녕 나의 나이는 다음과 같아' +str(4))
-
format
name = "chamgin" age = 24 print(f'my name is {0} age is {1} .format(name,age)')
-> 주로 이 방법 사용
python 조건문
if x >5:
print("5이상")
elif x==3:
print("3")
else:
print("else")
python 함수
반복되어 사용할 코드들을 묶어놓은 것
def sum(a,b):
result = a+b
return result;
print(2,5)
python 반복문
반복할 구문이 많을 때 사용 i는 시작 번호 10은 끝번호
-
for 문
for i in range(10): print("Hello")
-
while 문
i=0 while i<3: print(i) i=i+1
-
break, continue 문
- break는 해당 for문이나 while문을 탈출할 때 사용
- continue는 조건에 맞을 시에continue 밑의 부분을 실행 시키지 않고 싶을때 사용한다.
for i in range(10): print("Hello") if i==1: continue print("i가 1일 대 실행 안됨")
Leave a comment