# 146
# question_1
# 다음 코드의 결과값을 구하여라.
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") # 두번째 'you'가 들어있으니 출력되지 않음
elif "shirt" not in a:
print("shirt") # shirt가 없으므로 출력
elif "need" in a:
print("need") # 위의 elif가 충족되므로 여기는 else로 처리되서 출력되지 않음
else:
print("none")
# Q2
result = 0
i = 1
while i <= 1000:
if i % 3 == 0:
result += i
i += 1
print(result)
# Q3
i = 0
while True:
i += 1
if i > 5:
break
print("*" * i)
# Q4
for i in range(1, 101):
print(i) # 1부터 100까지 출력
# Q5
A = [70, 60, 55, 75, 95, 90, 80, 85, 100]
total = 0
for score in A:
total += score
average = total / len(A)
print(round(average, 2))
# Q6
numbers = [1, 2, 3, 4, 5]
result = []
# for n in numbers:
# if n % 2 == 1:
# result.append(n*2)
# print(result)
result = [n * 2 for n in numbers if n % 2 == 1]
print(result)
출력결과
# 1번
166833
# 2번
*
**
***
****
*****
# 3번
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# 4번
78.89
# 5번
[2, 6, 10]
'개발공부 > Python' 카테고리의 다른 글
파이참(Pycham) 단축키 모음 (0) | 2023.04.10 |
---|---|
파이썬_개발환경 조성(파이참 설치) 및 hello world 출력해보기 (0) | 2023.04.10 |
[점프 투 파이썬] 예제 풀기_112p (0) | 2023.04.10 |
PEP 8: E701 multiple statements on one line (colon) 에러 해결 (0) | 2023.04.10 |
파이썬으로 계산기 만들기 (0) | 2023.03.17 |