DAY 12 of PYTHON top 100 questions : from Basic to Advanced !!
Write a Python program to Check whether the given number is prime or not. n=int(input("Enter the number: ")) if n < 2 : is_prime= False else: is_prime= True for i in range(2,int(n**0.5)+1): if n%i==0: is_prime= False...
Jun 26, 20232 min read11
