You are on page 1of 3

Department of Computer Science

LAB #03
Artificial Inteligence
Submitted By:
Zulqarnain Anwar UW-20-CS-BS-63

Semester: 6th B

Submitted To:
MAM-ISRA NAZ
TASK-01
import numpy as np
x = np.random.rand(10, 4)
print("Original array: ")
print(x)
y= x[:5, :]
print("First 5 rows of the above array:")
print(y)

TASK-02

You might also like