지킬테마 홈피에 파비콘 추가
지킬테마 홈피에 파비콘 추가
지킬테마 홈피에 파비콘 추가
03-3 for문 시작 리스트 등 명시 for문 명시 결과 1. for문의 사용 a = [1,2,3,4,5,6] for i in a : print(i, end = " ") 1 2 3 4 5 6 a = [('a',1), ('b',2), ('c',3)...
03-2 while문 시작 조건을 명시 반복방식 명시 반복시 실행결과 명시 반복이 끝나는 조건 명시 반복이 끝날때 결과 명시 1. while 문의 기본 구조 while 조건문: 수행할_문장1 수행할_문장2 수행할_문장3 ... ...
03-1 if문 1. if문은 왜 필요할까? money = True if money : print("택시를 타고 가라") else : print("걸어가라") 택시를 타고 가라 money = True if money: print("택시를") prin...
02-8 자료형의 값을 저장하는 공간, 변수 변수_이름 = 변수에_저장할_값 a = [1, 2, 3] id(a) 134861523560320 a = [1, 2, 3] b = (a) print(id(a)) print(id(b)) a is b 134860463508...
This is some sample content that goes here with Markdown formatting.
This is some sample content that goes here with Markdown formatting.
This is some sample content that goes here with Markdown formatting. Left aligned with type="left"
This is some sample content that goes here with Markdown formatting. Right aligned with type="right"
This is some sample content that goes here with Markdown formatting. Centered with type="center"