[Python Study] 024 day
2022. 1. 29. 14:16
1
2
|
print("Python study 024 day")
#2022. 1.28.Fri
|
cs |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
def guGu(num):
result = []
for i in range(1,10):
result.append(i * num)
return '%s에 대한 구구단'%num, result
print(guGu(2))
def threeFive():
result = []
sum = 0
for i in range(1,100):
result.append(3*i)
result.append(5*i)
result.append(f'3과 5의 {i}배수와')
sum += 3*i + 5*i
result.append(sum)
result.append(f"3과 5의 {i}배수까지의 합")
return result
threeFive()
|
cs |
('2에 대한 구구단', [2, 4, 6, 8, 10, 12, 14, 16, 18]) Out[85]: [3, 5, '3과 5의 1배수와', 8, '3과 5의 1배수까지의 합', 6, 10, '3과 5의 2배수와', 24, '3과 5의 2배수까지의 합', 9, 15, '3과 5의 3배수와', 48, '3과 5의 3배수까지의 합', 12, 20, '3과 5의 4배수와', 80, '3과 5의 4배수까지의 합', 15, ------------
'Programming > Python' 카테고리의 다른 글
[Python Study] 026 day (0) | 2022.02.02 |
---|---|
[Python Study] 025 day (0) | 2022.02.01 |
[Python Study] 023 day (0) | 2022.01.29 |
[Python Study] 022 day (0) | 2022.01.29 |
[Python Study] 021 day (0) | 2022.01.29 |