-
04. 연습문제프로그래밍/Python 2021. 1. 12. 13:54728x90
wikidocs.net/42527 03장 연습문제
Q1. 다음 코드의 결과값
shirt
a = "Life is too short, you need python" if "wife" in a: print("wife") elif "python" in a and "you" not in a: print("python") elif "shirt" not in a: print("shirt") elif "need" in a: print("need") else: print("none")
Q2. 1부터 1000까지의 자연수 중 3의 배수의 합
result = 0 i = 1 while i <= 1000: if i % 3 == 0: result += i i += i print(result)
Q3. 별 표시
*
**
***
****
*****i = 0 while True: i += 1 if i > 5: break print(‘*’ * i)
Q4. for문을 사용해 1부터 100까지의 숫자 출력for i in range(1, 101): print(i)
Q5. A학급의 평균 점수A = [70, 60, 55, 75, 95, 90, 80, 80, 85, 100] total = 0 for score in A: total += score average = total / len(A) print(average)
Q6. 리스트 내포numbers = [1, 2, 3, 4, 5] result = [] for n in numbers: if n % 2 ==1: result.append(n*2) numbers = [1, 2, 3, 4, 5] result = [n*2 for n in numbers if n % 2 ==1] print(result)
*뭔가 하게 되면 나는 어떤 식으로든 성장한다. - 소설가 김연수'프로그래밍 > Python' 카테고리의 다른 글
이론 정리 (0) 2021.04.17 05. 연습문제 (0) 2021.01.14 03. 연습문제 (0) 2021.01.08 [Python] 거북이 그래픽 - 해리포터 죽음의 성물 그리기 (0) 2020.03.18 01. python 설치하기 (0) 2019.06.07