PRIME NUMBER PROGRAM IN PYTHON PROGRAMMING || PYTHON PROGRAMMING

  Рет қаралды 84,973

Sundeep Saradhi Kanthety

Sundeep Saradhi Kanthety

Күн бұрын

Пікірлер: 38
@tcimert
@tcimert Жыл бұрын
num = int(input("Enter a number ")) if num < 2: print("Enter a number greater than 1") elif num == 2: print(" 2 is a prime number") else: for i in range(2,num): if num%i ==0: print(num,"is not a prime number") break else: print(num,"is a prime number")
@sivadhawan5798
@sivadhawan5798 Жыл бұрын
🤝
@nareshmote8488
@nareshmote8488 Жыл бұрын
What if I check 15
@gokulkrishnayt
@gokulkrishnayt 2 жыл бұрын
crystal clear explanation!!
@nareddyaravindreddy
@nareddyaravindreddy 2 жыл бұрын
Iam regularly following your lectures.. very clear thank you :)
@retroworld5842
@retroworld5842 2 жыл бұрын
Bro do you get the job ? Pls reply
@amitkumarchoubey2003
@amitkumarchoubey2003 Жыл бұрын
Awesome 🛕🛕🕉️🕉️🌹🌹🚩🚩🙏🙏🛕🛕🌞🌞🌸🌸🌞🌞⛳⛳Sir
@marekmatusiak8397
@marekmatusiak8397 2 жыл бұрын
Hello Would you be interested in doing the world's first implementation of the MMSieve prime generation method in Python?
@mandar2681
@mandar2681 2 жыл бұрын
What about number 2 , it is also prime numbr
@murgan4307
@murgan4307 2 жыл бұрын
Yaa that's the same quation but I think we need to follow the like m=n/2,insted of using n we can use m.
@NivasBhogapurapu
@NivasBhogapurapu 11 ай бұрын
By this logic u r getting 2 as prime number only....
@seasonz75
@seasonz75 Жыл бұрын
Sudeep sir, pls explain on number 2 which is as prime...as i tried the code you shared.
@seasonz75
@seasonz75 Жыл бұрын
var=0 for var in range (1,26): # input 25 times - regress testing n=int(input('Enter an Integer: ')) flag=True if (n==2): print('Prime number') elif n!=2: for i in range (2,n): if(n%i==0): flag = False print('Not prime number') break else: print ('Prime number')
@sureshm8687
@sureshm8687 2 жыл бұрын
Hi sir Iam good in python code but some difficult programs I can't understand, where can i get solutions for easy understanding please reply
@stech5596
@stech5596 Жыл бұрын
what about 9 and 15 ?????
@ajaykumar-uz7qh
@ajaykumar-uz7qh 2 жыл бұрын
hello sir. in this program the output for 1 is shows prime number. But 1 is not a prime.can you please clarify.
@puneet8669
@puneet8669 2 жыл бұрын
Prime no. Have 2 factor but 1 has only one factor .that's why 1 is not prime
@shubhamneelgar196
@shubhamneelgar196 Жыл бұрын
n=int(input("enter the number : ")) if n>1: for i in range(2,n): if(n%i)==0: print(n,"is not a prime") break else: print(n,"is a prime") break else: print(n,"is not a prime")
@chiragkumar4196
@chiragkumar4196 2 жыл бұрын
Sir upload django lectures please
@konahari3501
@konahari3501 Жыл бұрын
if i enter 1 ,then i am getting 1 is a prime number.but 1 is not a prime number
@JosephL-g3m
@JosephL-g3m 2 жыл бұрын
I am understand
@akshaypatil8155
@akshaypatil8155 Жыл бұрын
sir sochte kaise hai ki python code likha kaise jaiga????? please ispe video banaye...
@JaswanthKumar-lx6hf
@JaswanthKumar-lx6hf 11 ай бұрын
how to check nearest prime number of given number
@pankajsahu9058
@pankajsahu9058 Жыл бұрын
incomlete code: try to enter any prime number in this code and it willl run until n-1
@deepakSharma-cf5qo
@deepakSharma-cf5qo 4 ай бұрын
Below code is giving error in pycharm and online compiler also. Can anyone help what is the issue. num = int(input("enter the number")) count = 0 if num>1: for i in range(1,num+1): if num % i == 0: count = count+1 if count == 2: print("prime") else: print("not prime")
@bhagyamahalakshmi349
@bhagyamahalakshmi349 2 жыл бұрын
2 is a prime
@kopparthiharika1693
@kopparthiharika1693 2 жыл бұрын
How to print first 100 prime numbers sir
@sundeepsaradhi
@sundeepsaradhi 2 жыл бұрын
Our next video is on prime series Keep following our channel
@kopparthiharika1693
@kopparthiharika1693 2 жыл бұрын
@@sundeepsaradhi ok sir. Thank you 😊
@ravitejagunisetti9973
@ravitejagunisetti9973 Жыл бұрын
What about 2
@09.srushtibhujbal35
@09.srushtibhujbal35 Ай бұрын
Last minute exam preparation
@riyazbagban9190
@riyazbagban9190 2 жыл бұрын
and 3 also\
@riyazbagban9190
@riyazbagban9190 2 жыл бұрын
take 2 and explain
@Spartan17_yt
@Spartan17_yt 10 ай бұрын
as if loop check for num..It is equal to 2.In this case if loop doesnt get executed.So flag remains false hence it returns as prime
@Stream_Wars
@Stream_Wars 2 жыл бұрын
Anna Nuvvu ....?
@shinysrivastava9208
@shinysrivastava9208 11 ай бұрын
#wap to check if the number is prime or not num=int(input("Enter a number to check if it is prime : ")) for i in range (2,num): if n%i==0: print (num, "is not prime") break else: print ("It is prime") this is still giving 11 as "not prime" why ??
@shinysrivastava9208
@shinysrivastava9208 11 ай бұрын
else condition is outside if statement
@sundeepsaradhi
@sundeepsaradhi 11 ай бұрын
Hi Replace n with num in n%i
Python Tutorial - Prime Numbers | Printing Prime Numbers in Given Interval
18:33
Маусымашар-2023 / Гала-концерт / АТУ қоштасу
1:27:35
Jaidarman OFFICIAL / JCI
Рет қаралды 390 М.
Air Sigma Girl #sigma
0:32
Jin and Hattie
Рет қаралды 45 МЛН
Who is More Stupid? #tiktok #sigmagirl #funny
0:27
CRAZY GREAPA
Рет қаралды 10 МЛН
25 nooby Python habits you need to ditch
9:12
mCoding
Рет қаралды 1,8 МЛН
How I Would Learn Python FAST (if I could start over)
12:19
Thu Vu data analytics
Рет қаралды 708 М.
Solve any Star Pattern program in Python
18:44
Simply Coding
Рет қаралды 1 МЛН
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 258 М.
Python for Beginners - Learn Coding with Python in 1 Hour
1:00:06
Programming with Mosh
Рет қаралды 20 МЛН
Маусымашар-2023 / Гала-концерт / АТУ қоштасу
1:27:35
Jaidarman OFFICIAL / JCI
Рет қаралды 390 М.