소연의_개발일지
# 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]
profile

소연의_개발일지

@ssoyxon

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!