Index
Index
1. Certificate
2. Acknowledgement
3. Introduction
4. Introduction to Python
5. Coding
6. Output in Python
7. Bibliography
CLASS-XII
Sub: COMPUTER SCIENCE (083)
Practical File
Practical No.: 01
Objective: Write a program in python to check a number whether it is prime or not
Program:
for i in range(2,num):
if num%i==0:
break;
else:
Output: