Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 13

CENTRAL BOARD OF SECONDARY EDUCATION

CREDENCE HIGH SCHOOL, DUBAI

PRACTICAL FILE

SUBJECT- ARTIFICIAL INTELLIGENCE

SUBMITTED BY- Vedant Godbole


TEACHER’S NAME- MS. THAMIZHMANI
CLASS- IX
SUBJECT CODE- 417

Subject Teacher’s Signature


CERTIFICATE

This is to certify that Vedant Godbole, student of Class-IX, Credence High School, Dubai
has completed the PYTHON Practical File during the academic session 2022-2023
towards partial fulfilment of credit for the ARTIFICIAL INTELLIGENCE practical
evaluation of CBSE and submitted satisfactory report, as compiled in the following
pages, under my supervision.

Total number of programs certified are: - 7

External Examiner’s Signature Internal Examiner’s Signature


Index
S. No Title Pg.

Basic Python

1 Write a Python program to print your name 10 times. 1

2 Write a Python program to print first N natural numbers. 2

3 Write a Python program to print the sum of first N natural numbers. 3

4 Write a Python program to print first 10 odd numbers. 4

5 Write a Python program to print first 10 even numbers. 5

6 Write a Python program to create list of first 5 rainbow colours and add rest of 6
the colours using append method. Print the list before updating and after
updating.

7 Write a Python program to create a list of 5 different fruits and remove one fruit 7
from the list using pop method and another fruit using remove method. Print the
list before updating and after updating
1. Write a Python program to print your name 10 times.
Aim- To write a Python program to print your name 10 times
Input-

Output-
Pg. 1

2. Write a Python program to print first N natural numbers. (Take limit


(N)from user, Use for loop and print the output in one line)
Aim- a Python program to print first N natural numbers
Input-

Output-
Pg. 2

3. Write a Python program to print the sum of first N natural numbers.


Aim- A Python program to print the sum of first N natural numbers.
Input-

Output-
Pg. 3

4. Write a Python program to print first 10 odd numbers.


Aim- A Python program to print first 10 odd numbers
Input-

Output-
Pg. 4

5. Write a Python program to print first 10 even numbers.


Aim- A Python program to print first 10 even numbers
Input-

Output-
Pg. 5

6. Write a Python program to create list of first 5 rainbow colours and


add rest of the colours using append method. Print the list before
updating and after updating.
Aim- a Python program to create list of first 5 rainbow colours and add rest of the colours
using append method. Print the list before updating and after updating.

Input-
Output-

Pg. 6

7. Write a Python program to create a list of 5 different fruits and


remove one fruit from the list using pop method and another fruit
using remove method. Print the list before updating and after
updating
Aim- A Python program to create a list of 5 different fruits and remove one fruit from the
list using pop method and another fruit using remove method. Print the list before updating
and after updating.

Input-
Output-

Pg. 7

You might also like