def add(a, b):
c = a+b
print(c) #함수는 항상 메인 스크립트 위에 적어놔야 인식이 가능하다.
add(3,2)
add(5,7)
5
12
def add(a, b):
c = a+b
return c
print(add(3,2))
x=add(3, 2)
print(x)
5
5
5
def add(a, b):
c = a+b
d= a-b
return c,d
print(add(3,2))
(5,1)
def isPrime(x):
for i in range(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, end=' ')
13 7 19