반응형
def prime_checker(number):
is_prime = True
for n in range(2, number):
if number % n == 0:
is_prime = False
if is_prime == True:
print(f"{number} is prime")
else:
print(f"{number} is not prime")
#Write your code above this line 👆
#Do NOT change any of the code below👇
n = int(input("Check this number: "))
prime_checker(number=n)
반응형
'파이썬 > exercise' 카테고리의 다른 글
9-1. python dictionary 성적 등급 매기는 프로그램 (0) | 2023.01.04 |
---|---|
8-3. python caesar cipher (0) | 2023.01.04 |
8-1. python function - math ceil (0) | 2023.01.04 |
7. python hangmangame (0) | 2023.01.04 |
5-4. python 비밀번호 생성기(shuffle) (0) | 2023.01.04 |