0% found this document useful (0 votes)
2 views1 page

Python Practical Outputs

The document provides practical outputs for various Python data structures including vectors, lists, matrices, arrays, and data frames. It shows examples of vector addition, list modifications, matrix summation, array summation, and a simple data frame with student names and marks. Each section highlights the original and resulting values after operations.

Uploaded by

rudrakshluthra36
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Python Practical Outputs

The document provides practical outputs for various Python data structures including vectors, lists, matrices, arrays, and data frames. It shows examples of vector addition, list modifications, matrix summation, array summation, and a simple data frame with student names and marks. Each section highlights the original and resulting values after operations.

Uploaded by

rudrakshluthra36
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

PYTHON PRACTICAL OUTPUTS

1. Vector
Vector: [2, 4, 6]
Addition Result: [4, 6, 8]

2. List
Original List: [10, 20, 30]
After Append: [10, 20, 30, 40]
After Remove: [10, 30, 40]

3. Matrix
Matrix A:
12
34

Matrix B:
56
78

Sum of Matrices:
68
10 12

4. Arrays
Array Elements: [1, 2, 3, 4, 5]
Sum of Array: 15

5. Data Frame
Name Marks
Amit 85
Riya 90
Rahul 78

You might also like