본문 바로가기
Algorithm problem solving/풀이

[SW Expert Academy] 파이썬 기초2 ( 6274 ~ 6278 )

by Jiyoon-park 2020. 2. 27.

한 달 전에 풀었던 문제를 다시 풀어보니 이전에 풀었던 코드랑 또 다르게 푸는 나의 모습을 발견 !
앞으로의 성장 또한 기대하며 남기는 현재의 코드
( 티스토리 처음이라 소스 코드 넣는 법을 다양하게 시도해보았다 ! )

6274. 리스트 튜플_1

1
2
3
4
scores = [ (90,80), (85,75), (90,100) ]
 
for i in range(len(scores)):
    print('{}번 학생의 총점은 {}점이고, 평균은 {}입니다.'.format(i+1, sum(scores[i]), sum(scores[i])/2))
cs

6275. 리스트 튜플_2

1
2
3
4
5
6
7
8
9
vowels = 'aeiou'
sentence = 'Python is powerful... and fast; plays well with others; runs everywhere; is friendly & easy to learn; is Open.'
 
result =''
for s in sentence:
    if s not in vowels:
        result += s
 
print(result)
cs

6276. 리스트 튜플_3

result = []

for i in range(2, 10):
    temp =[]
    for j in range(1, 10):
        if i*j % 3 and i*j % 7:
            temp.append(i*j)
    result.append(temp)

print(result)​

6277. 리스트 튜플_4

result = []
for _ in range(5):
    n = int(input())
    result.append(n)

print('입력된 값 {}의 평균은 {}입니다.'.format(result, sum(result)/len(result)))

6278. 리스트 튜플_5

n = int(input())
aliquot = []
for i in range(1, n+1):
    if not n % i:
        aliquot.append(i)
print(aliquot)