#29 Python Tutorial for Beginners | Ways of Creating Arrays in Numpy
648.2K views on YouTube
Check out our courses:
Agentic AI Engineering with Python : https://go.telusko.com/agentic-ai-python
Coupon: TELUSKO10 (10% Discount)
Master Java Spring Development : https://go.telusko.com/learn-master
Coupon: TELUSKO10 (10% Discount)
For More Queries WhatsApp or Call on : +919008963671
website : https://telusko.com/
Udemy Courses:
Java Spring:- https://go.telusko.com/Udemyjavaspring
Java:- https://go.telusko.com/udemyteluskojava
Spring: https://go.telusko.com/udemyteluskospring
Java For Programmers:- https://go.telusko.com/javaProgrammers
Python : https://go.telusko.com/udemyteluskopython
Git : https://go.telusko.com/udemyteluskogit
Docker : https://go.telusko.com/udemyteluskodocker
Instagram : https://www.instagram.com/navinreddyofficial/
Linkedin : https://in.linkedin.com/in/navinreddy20
WhatsApp : https://go.telusko.com/whatsapp
Discord : https://discord.gg/D8hWe9BqfF
In this lecture we are discussing about:
— Ways of creating arrays in numpy:
we have 6 way of creating arrays in numpy
a)array()
b)linspace()
c)arange()
d)logspace()
e)zeros()
f)ones()
from numpy import *
arr =array([1,2,3,4,5])
print(arr)
print(arr.dtype) # int32
arr =array([1,2,3,4,5.0])
print(arr.dtype) # float
— automatically it will convert the data type to float
arr =array([1,2,3,4,5],float)
print(arr.dtype) # float
— we can also specify the data type of array
b) linspace()
— it is used to create an array with equal interval between the elements
— syntax: linspace(start,stop,num=50,endpoint=True,retstep=False,dtype=None)
arr=linspace(0,15,16) # here it break the range into 16 equal parts
— by default it will take 50 parts
arr =linspace(0,15)
print(arr)
c) arange()
— it is used to create an array with equal interval between the elements
— syntax: arange(start,stop,step,dtype=None)
arr =arange(1,15,2)
print(arr)
— it will create an array with start value 1 and end value 15 with step size 2
arr=arange(1,15,2.5)
d) logspace()
— it is used to create an array with equal interval between the elements in log scale
— syntax: logspace(start,stop,num=50,endpoint=True,base=10.0,dtype=None)
arr=logspace(1,40,5)
print(arr)
e) zeros()
— it is used to create an array with all zeros
— syntax: zeros(shape,dtype=float,order=’C’)
arr= zeros(5)
print(arr)
f) ones()
— it is used to create an array with all ones
— syntax: ones(shape,dtype=float,order=’C’)
arr=ones(5)
print(arr)
# if i want work with int
arr=ones(4,int)
print(arr)
Github :- https://github.com/navinreddy20/Python-
Python for Beginners :- http://bit.ly/3JOLQhl
Java and Spring Framework For beginners with Spring Boot : – http://bit.ly/3LDMj8D
Java Tutorial for Beginners (2023) :- http://bit.ly/3yARVbN
Subscribe to our other channel:
Navin Reddy : https://www.youtube.com/channel/UCxmk…
Telusko Hindi :
https://www.youtube.com/channel/UCitz…
Donation:
PayPal Id : navinreddy20
Patreon : navinreddy20
http://www.telusko.com/contactus