일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 배열
- 기초
- MiniHeap
- 알고리즘
- 순차 탐색
- 파이썬
- 그래프
- 문법
- 트리
- 분할 정복
- UNIX
- 정렬
- format 메서드
- 그리디
- NQueen
- 탐색
- 재귀 함수
- sys.stdin.readline()
- type 함수
- 우분투
- 유닉스
- 동적 계획
- 자기개발
- 스택
- IT
- Git
- 이진 탐색
- 백준
- 자료구조
- git hub
- Today
- Total
목록파이썬/기초 (10)
코딩고치
For 문 items = ['Estus Flask', 'Ashen Estus Flask', 'Estus Shard', 'Homeward Bone', 'Fading Soul'] # while 문으로 표현할 때 i = 0 while i < len(items): print(items[i]) i += 1 print('--------------------------------------------') # for 문으로 표현 for item in items: print(item) Estus Flask Ashen Estus Flask Estus Shard Homeward Bone Fading Soul -------------------------------------------- Estus Flask Ashen Es..
리스트 여러 값을 입력받으려면 리스트를 이용하면 됨. item = ['Estus Flask', 'Ashen Estus Flask', 'Fading soul'] print(item) ['Estus Flask', 'Ashen Estus Flask', 'Fading soul'] 특정 요소를 출력하고 싶으면 indexing을 이용 index는 0부터 시작함 item = ['Estus Flask', 'Ashen Estus Flask', 'Fading soul'] print(item[1]) Ashen Estus Flask 음수로도 indexing이 가능함 item = ['Estus Flask', 'Ashen Estus Flask', 'Fading soul'] print(item[2]) print(item[-1]) ..
input() 콘솔창을 이용하여 입력값을 받기위한 함수 day = input('요일을 입력하세요: ') print(day) 요일을 입력하세요: Saturday Saturday input()으로 입력한 데이터는 기본적으로 문자열로 저장 정수형으로 입력하려면 int(input())으로 자료형을 바꾸어 주어야 함 month = input('월을 입력하세요: ') print(type(month)) 월을 입력하세요: 5 month = int(input('월을 입력하세요: ')) print(type(month)) 월을 입력하세요: 5
while문 while문의 구조 while 조건: 수행 구문 # while문을 이용하여 1 ~ 10까지 출력 i = 1 while i 15000: print("택시를 탄다.") else: print("걸어간다.") 걸어간다. elif문 if 문에서 더 많은 조건을 주기 위해 사용 money = 10000 if money > 15000: print("택시를 탄다.") elif money 5000: print("버스를 탄다.") else: print("걸어간다.") 버스를 탄다. break, continue break는 조건문의 조건에 관계없이 반복문에서 빠져나올 때 사용 i = 1 while i < 20: print(i) i += 1 1 2 3 4 5 6 7 8 9 10..