इस कार्यक्रम में, हम nxn आकार के एक पहचान मैट्रिक्स को प्रिंट करेंगे जहां n को उपयोगकर्ता से इनपुट के रूप में लिया जाएगा। हम numpy लाइब्रेरी में आइडेंटिटी () फंक्शन का इस्तेमाल करेंगे, जो पैरामीटर के रूप में एलिमेंट के डायमेंशन और डेटा टाइप को लेता है
एल्गोरिदम
Step 1: Import numpy. Step 2: Take dimensions as input from the user. Step 3: Print the identity matrix using numpy.identity() function.
उदाहरण कोड
import numpy as np dimension = int(input("Enter the dimension of identitiy matrix: ")) identity_matrix = np.identity(dimension, dtype="int") print(identity_matrix)
आउटपुट
Enter the dimension of identitiy matrix: 5 [[1 0 0 0 0] [0 1 0 0 0] [0 0 1 0 0] [0 0 0 1 0] [0 0 0 0 1]]