python program please help me
Attachments:
Answers
Answered by
1
i = 1
v = 1000^1000
for i in range(v):
i += 1
print(1)
Answered by
5
list1 = [10, 45, 67, 34, 89]
1. To convert list1 into an array named array1 and print it.
2. To add 3 to every element in array1 and store the result in array2. Array2 is to be printed after that.
3. To print the odd elements from array1.
4. To print the first, last and middle element of array2.
5. To create an array named array3 using the function from 10 to 50 at intervals of 10.
6. To sort array1 using a NumPy function.
7. To create an array named array4 of dimensions 3 × 4 and perform tasks after it.
- Number of dimensions:
- Shape of the array:
- Length of the array:
Similar questions