print( " hellow %s : %s " %(name , age) )
list = [ 1 , 2 , 3 , 4]
list[ 2 : 4] = [ 3 , 4 ] < 리스트의 인덱스 2에서 3까지 표시
list.append(10) -> list = [1,2,3,4,10] 이 된다.
del list [1] -> 인덱스 1인 2가 제거된다.
list + list
list * list
튜플 tuple = (0, 1, 2) ->안의 항목들을 지우거나 추가하는게 불가능
---------------- 흐름 제어 -----------------
- if -
if age > 20:
print("test")
realage = 90
elif age == 30 or age == 32 and age < 35:
print ("old")
else:
print("young")
- for - // list 안의 요소들이순서대로 x 로 들어간후 한번 루프 실행후 다음 요소가 x로 들어가서 다시 루프가 돌아간다.
for x in list:
print ("x")
for x in range(0,5):
print ("x")
-while - // 조건문이 false 되면 멈춤
step = 0
while step < 1000:
print ("step")
while true:
if step == 500:
print("step")
elif step == 700:
break
else
step = step + 1
while x > 50 and y < 100:
댓글 없음:
댓글 쓰기