본문 바로가기
● 알고리즘, 자료구조/2019 알고리즘

함수

by 0ver-grow 2020. 9. 11.
반응형

def add(a,b) :
    c = a+b
    print(c)


add(3,3)


'''
def add(a,b):
    c=a+b
    return c
# 결과값을 호출하는것에 c를 반환함
# return은 결과값을 반환
print(add(3,2))
'''

'''
def add(a,b) :
    c = a+b
    d = a-b
    return c,d

print(add(2,2))
# 출력값 (4, 0)
'''

# list에서 소수만 출력해보자
# 소수는 1과 자기자신만 존재해야 소수
# 지역변수 x
def isPrime(x) :
    for i in range(2,x): # 2부터 x앞까지만 반영됨
        if x%i==0:
            return False
    return True

a = [12,13,7,9,19]
for y in a : 
    if isPrime(y) :
        print(y)

반응형

'● 알고리즘, 자료구조 > 2019 알고리즘' 카테고리의 다른 글

함수란?  (0) 2020.10.14
[기초코딩] 100에서 1까지 거꾸로 출력하기  (0) 2020.09.20
선택 정렬  (0) 2019.09.27
순차탐색  (0) 2019.09.26
최대공약수 GCD 알고리즘. 유클리드.  (0) 2019.09.25