Discussion Thread (W-11): What you learn Today Saturday, 5 June 2021, 5:23 PM Number of replies: 42 1. Create a 2-by-5 array containing reverse order of the even integers from 2 through 10 in the first row and the odd integers from 1 through 9 in the second row. using numpy Permalink In reply to First post Re: Discussion Thread (W-11): What you learn Today by MD RAKIBUL ISLAM(193-15-3015) - Monday, 2 August 2021, 1:08 PM This week, I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python.Thank you ma'am 🙃 Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Samanta Sajjad 193-15-3023 - Monday, 2 August 2021, 1:36 PM In this week, I have learned about 1) Array from existing data 2)Array attributes 3)Array Operators 4) NumPy methods 5)Shallow copies 6)Deep copies 7) Examples using NumPy in python. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Rony Ahmed - Wednesday, 4 August 2021, 11:25 AM I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Jackson Talukder - Wednesday, 4 August 2021, 11:46 AM In this week, I've learned about NumPy Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Sabrina Tabassum_193-15-1072 - Wednesday, 4 August 2021, 12:10 PM In this week, I've learned about NumPy Permalink Show parent In reply to Sabrina Tabassum_193-15-1072 Re: Discussion Thread (W-11): What you learn Today by Sabrina Tabassum_193-15-1072 - Wednesday, 4 August 2021, 12:36 PM Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md. Jannatul Ferdous 191-15-2497 - Wednesday, 4 August 2021, 12:14 PM In this week, I've learned about NumPy.Import numpy as np:my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]])print(my_arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Arafat Rahman Medul 193-15-1073 - Wednesday, 4 August 2021, 12:14 PM I have learned "NumPy" in this week. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by MD: AL AMIN PATWARY - Wednesday, 4 August 2021, 12:15 PM In this week, I've learned about NumPy. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Ahmad Umar Mahdi 193-15-1071 - Wednesday, 4 August 2021, 12:21 PM import numpy as np array_2D = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) array_2D Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Jackson Talukder - Wednesday, 4 August 2021, 12:23 PM import numpy as nparr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]])print(arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Tahia Binte Humayun - Wednesday, 4 August 2021, 12:29 PM import numpy as my_numpy my_array = my_numpy.array([[val for val in range(10,0,-2)],[val for val in range(9,0,-2)]]) print("The 2 by 5 array is\n",my_array,"\n") Permalink Show parent In reply to Tahia Binte Humayun Re: Discussion Thread (W-11): What you learn Today by Tahia Binte Humayun - Wednesday, 4 August 2021, 12:31 PM Output: The 2 by 5 array is [[10 8 6 4 2] [ 9 7 5 3 1]] Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Mohaiminul Islam - Wednesday, 4 August 2021, 12:31 PM ■Import numpy as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Arafat Rahman Medul 193-15-1073 - Wednesday, 4 August 2021, 12:35 PM import numpy as np array_2D = np.array([[t for t in range(10,0,-2)],[t for t in range(9,0,-2)]]) array_2D Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by jannatul mawa (192-15-1063) - Wednesday, 4 August 2021, 12:40 PM In this week, I've learned about NumPy. Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Nazbir Ahmed Niloy(191-15-2742) - Wednesday, 4 August 2021, 12:42 PM import numpy as np : arr=np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) Print (arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md.Omer Faruk Tusher 192-15-13122 - Wednesday, 4 August 2021, 1:31 PM import numpy as np array_2D = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) array_2D Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by MD: AL AMIN PATWARY - Wednesday, 4 August 2021, 1:38 PM Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Mohammad Imam Hossain 191-15-2437 - Wednesday, 4 August 2021, 1:41 PM Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md.Sabbir Hossain (192-15-2857) - Wednesday, 4 August 2021, 5:17 PM Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by NUSRAT JAHAN (193-15-2924) - Thursday, 5 August 2021, 10:00 AM import numpy as np array_2D = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) array_2D Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Apel Mahmud (193-15-2984) - Thursday, 5 August 2021, 10:17 AM I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Muhammad Shahedul Islam (193-15-2997) - Thursday, 5 August 2021, 10:23 AM In this week, I've learned about NumPy. Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Anik Sheikh (193-15-3000) - Thursday, 5 August 2021, 10:34 AM In this week, I have learned about 1) Array from existing data 2)Array attributes 3)Array Operators 4) NumPy methods 5)Shallow copies 6)Deep copies 7) Examples using NumPy in python. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Razia Sultana Misu(193-15-2976) - Thursday, 5 August 2021, 11:23 AM In this week,We have learned about numpy. Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Joshinta Jerin - Friday, 6 August 2021, 11:51 AM Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Tamanna Akter (193-15-2937) - Friday, 6 August 2021, 7:33 PM This week, I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Fahim Mahmud 193-15-2939 - Sunday, 8 August 2021, 5:07 PM I learned this week, Numpy methods, Shallow copies, Deep copies. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Abdul Wahid 193-15-2992 - Monday, 9 August 2021, 5:11 PM Source code:import numpy as npnumbers=np.array([[x for x in range(10,1,-2)],[x for x in range (10,1,-2)]])print(numbers)OUTPUT: Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Al Amin 193-15-2981 - Tuesday, 10 August 2021, 1:24 PM import numpy as np numbers=np.array([[x for x in range(10,1,-2)],[x for x in range (10,1,-2)]]) print(numbers) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Sakib Khan Mahin 193-15-3020 - Sunday, 15 August 2021, 11:55 AM In this week, I've learned about NumPy. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Ata-E-Elahi 193-15-2946 - Thursday, 19 August 2021, 10:56 AM This week, I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Afsana Akter 192-15-2843 - Thursday, 19 August 2021, 11:06 AM I've learned about NumPy. Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Most.Kamrun Naher Shuchana 193-15-2926 - Thursday, 19 August 2021, 11:02 PM In this week, I've learned about NumPy Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Fahamidur Rahaman(192-15-2863) - Saturday, 21 August 2021, 6:58 AM In this week, I have learned about 1) Array from existing data 2)Array attributes 3)Array Operators 4) NumPy methods 5)Shallow copies 6)Deep copies 7) Examples using NumPy in python. Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Sadnam Saniat 192-15-2794 - Wednesday, 25 August 2021, 9:04 PM Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Al-Ifran (193-15-2915) - Thursday, 26 August 2021, 1:00 PM Import numpy as np: array1 = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(array1) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by RIFAT ahmed (193-15-2911) - Thursday, 26 August 2021, 1:19 PM I've learned about NumPy. Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Mahmuda Akter Lopa 191-15-1030 - Saturday, 28 August 2021, 11:09 PM import numpy as py my_num = py.array([[x for x in range(10,1,-2)],[x for x in range (10,1,-2)]]) print(my_num) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md.Eamon Rahman (193-15-2967) - Wednesday, 1 September 2021, 1:10 PM In this week, I've learned about NumPy. Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md. Nure Alom 192-15-2791 - Friday, 3 September 2021, 10:28 PM I have learned about NumPy method Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by MD RAKIBUL ISLAM(193-15-3015) - Monday, 2 August 2021, 1:08 PM This week, I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python.Thank you ma'am 🙃 Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Samanta Sajjad 193-15-3023 - Monday, 2 August 2021, 1:36 PM In this week, I have learned about 1) Array from existing data 2)Array attributes 3)Array Operators 4) NumPy methods 5)Shallow copies 6)Deep copies 7) Examples using NumPy in python. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Rony Ahmed - Wednesday, 4 August 2021, 11:25 AM I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Jackson Talukder - Wednesday, 4 August 2021, 11:46 AM In this week, I've learned about NumPy Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Sabrina Tabassum_193-15-1072 - Wednesday, 4 August 2021, 12:10 PM In this week, I've learned about NumPy Permalink Show parent In reply to Sabrina Tabassum_193-15-1072 Re: Discussion Thread (W-11): What you learn Today by Sabrina Tabassum_193-15-1072 - Wednesday, 4 August 2021, 12:36 PM Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent
In reply to Sabrina Tabassum_193-15-1072 Re: Discussion Thread (W-11): What you learn Today by Sabrina Tabassum_193-15-1072 - Wednesday, 4 August 2021, 12:36 PM Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md. Jannatul Ferdous 191-15-2497 - Wednesday, 4 August 2021, 12:14 PM In this week, I've learned about NumPy.Import numpy as np:my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]])print(my_arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Arafat Rahman Medul 193-15-1073 - Wednesday, 4 August 2021, 12:14 PM I have learned "NumPy" in this week. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by MD: AL AMIN PATWARY - Wednesday, 4 August 2021, 12:15 PM In this week, I've learned about NumPy. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Ahmad Umar Mahdi 193-15-1071 - Wednesday, 4 August 2021, 12:21 PM import numpy as np array_2D = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) array_2D Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Jackson Talukder - Wednesday, 4 August 2021, 12:23 PM import numpy as nparr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]])print(arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Tahia Binte Humayun - Wednesday, 4 August 2021, 12:29 PM import numpy as my_numpy my_array = my_numpy.array([[val for val in range(10,0,-2)],[val for val in range(9,0,-2)]]) print("The 2 by 5 array is\n",my_array,"\n") Permalink Show parent In reply to Tahia Binte Humayun Re: Discussion Thread (W-11): What you learn Today by Tahia Binte Humayun - Wednesday, 4 August 2021, 12:31 PM Output: The 2 by 5 array is [[10 8 6 4 2] [ 9 7 5 3 1]] Permalink Show parent
In reply to Tahia Binte Humayun Re: Discussion Thread (W-11): What you learn Today by Tahia Binte Humayun - Wednesday, 4 August 2021, 12:31 PM Output: The 2 by 5 array is [[10 8 6 4 2] [ 9 7 5 3 1]] Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Mohaiminul Islam - Wednesday, 4 August 2021, 12:31 PM ■Import numpy as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Arafat Rahman Medul 193-15-1073 - Wednesday, 4 August 2021, 12:35 PM import numpy as np array_2D = np.array([[t for t in range(10,0,-2)],[t for t in range(9,0,-2)]]) array_2D Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by jannatul mawa (192-15-1063) - Wednesday, 4 August 2021, 12:40 PM In this week, I've learned about NumPy. Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Nazbir Ahmed Niloy(191-15-2742) - Wednesday, 4 August 2021, 12:42 PM import numpy as np : arr=np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) Print (arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md.Omer Faruk Tusher 192-15-13122 - Wednesday, 4 August 2021, 1:31 PM import numpy as np array_2D = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) array_2D Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by MD: AL AMIN PATWARY - Wednesday, 4 August 2021, 1:38 PM Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Mohammad Imam Hossain 191-15-2437 - Wednesday, 4 August 2021, 1:41 PM Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md.Sabbir Hossain (192-15-2857) - Wednesday, 4 August 2021, 5:17 PM Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by NUSRAT JAHAN (193-15-2924) - Thursday, 5 August 2021, 10:00 AM import numpy as np array_2D = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) array_2D Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Apel Mahmud (193-15-2984) - Thursday, 5 August 2021, 10:17 AM I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Muhammad Shahedul Islam (193-15-2997) - Thursday, 5 August 2021, 10:23 AM In this week, I've learned about NumPy. Import number as np arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Anik Sheikh (193-15-3000) - Thursday, 5 August 2021, 10:34 AM In this week, I have learned about 1) Array from existing data 2)Array attributes 3)Array Operators 4) NumPy methods 5)Shallow copies 6)Deep copies 7) Examples using NumPy in python. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Razia Sultana Misu(193-15-2976) - Thursday, 5 August 2021, 11:23 AM In this week,We have learned about numpy. Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Joshinta Jerin - Friday, 6 August 2021, 11:51 AM Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Tamanna Akter (193-15-2937) - Friday, 6 August 2021, 7:33 PM This week, I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Fahim Mahmud 193-15-2939 - Sunday, 8 August 2021, 5:07 PM I learned this week, Numpy methods, Shallow copies, Deep copies. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Abdul Wahid 193-15-2992 - Monday, 9 August 2021, 5:11 PM Source code:import numpy as npnumbers=np.array([[x for x in range(10,1,-2)],[x for x in range (10,1,-2)]])print(numbers)OUTPUT: Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Al Amin 193-15-2981 - Tuesday, 10 August 2021, 1:24 PM import numpy as np numbers=np.array([[x for x in range(10,1,-2)],[x for x in range (10,1,-2)]]) print(numbers) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Sakib Khan Mahin 193-15-3020 - Sunday, 15 August 2021, 11:55 AM In this week, I've learned about NumPy. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Ata-E-Elahi 193-15-2946 - Thursday, 19 August 2021, 10:56 AM This week, I have learned about Array from existing data, array attributes, array Operators, NumPy methods, Shallow copies, Deep copies, Examples using NumPy in python. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Afsana Akter 192-15-2843 - Thursday, 19 August 2021, 11:06 AM I've learned about NumPy. Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Most.Kamrun Naher Shuchana 193-15-2926 - Thursday, 19 August 2021, 11:02 PM In this week, I've learned about NumPy Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Fahamidur Rahaman(192-15-2863) - Saturday, 21 August 2021, 6:58 AM In this week, I have learned about 1) Array from existing data 2)Array attributes 3)Array Operators 4) NumPy methods 5)Shallow copies 6)Deep copies 7) Examples using NumPy in python. Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Sadnam Saniat 192-15-2794 - Wednesday, 25 August 2021, 9:04 PM Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Al-Ifran (193-15-2915) - Thursday, 26 August 2021, 1:00 PM Import numpy as np: array1 = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(array1) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by RIFAT ahmed (193-15-2911) - Thursday, 26 August 2021, 1:19 PM I've learned about NumPy. Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Mahmuda Akter Lopa 191-15-1030 - Saturday, 28 August 2021, 11:09 PM import numpy as py my_num = py.array([[x for x in range(10,1,-2)],[x for x in range (10,1,-2)]]) print(my_num) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md.Eamon Rahman (193-15-2967) - Wednesday, 1 September 2021, 1:10 PM In this week, I've learned about NumPy. Import numpy as np: my_arr = np.array([[x for x in range(10,0,-2)],[x for x in range(9,0,-2)]]) print(my_arr) Permalink Show parent
In reply to First post Re: Discussion Thread (W-11): What you learn Today by Md. Nure Alom 192-15-2791 - Friday, 3 September 2021, 10:28 PM I have learned about NumPy method Permalink Show parent