InterviewSolution
Saved Bookmarks
| 1. |
How to check the prime number in Python? |
|
Answer» Here's a program to check whether a number is prime or not. Note: PYTHON is an interpreted bytecode-complied language. Our list of Python CODING Interview QUESTIONS will clear the basic as well as complex concepts of this high-level programming language. Examplenum = 11 if (num % i) == 0: |
|