One of the easiest and clean method... Thankyou so much sir. Keep rocking.
@codeitup4 жыл бұрын
Thanks Babli.. :)
@farookansari8394 жыл бұрын
You have great capabilities to describe. Seedha dimag me..
@codeitup4 жыл бұрын
Ha ha thanks😊
@itsmehere1432 жыл бұрын
you teaching style is osam
@codeitup2 жыл бұрын
Thanks Ayush!
@tanvirgsmАй бұрын
hi sir, I'm following you're numpy lectures from beginning, I was looking for whether all the numpy codes which you've shown are already written so that I can copy paste and save my time. Have you shared all codes in any where in you're lecture ? kindly let know, much helpful for us. GREAT TUTORIAL! loved them so much.
@hdjfjd82 жыл бұрын
helpful tutorial series on numpy
@codeitup2 жыл бұрын
😊
@muhammadsahilmusa2 жыл бұрын
Shukriya Anand Bhai
@codeitup2 жыл бұрын
😊
@aryansingh40924 жыл бұрын
boht badiye
@codeitup4 жыл бұрын
Thanks !
@alimorteza61034 жыл бұрын
5:37 par Apne kaha list wali video, please uski link add karden
@codeitup4 жыл бұрын
kzbin.info/www/bejne/fXW3oGucrtx_m5I
@vlogtypea32012 жыл бұрын
Thankyou very much
@codeitup2 жыл бұрын
Always welcome😊
@shivanshsingh55554 жыл бұрын
plz check: import numpy as np a=[1,2,3,4,5] myarr=np.array(a) print(myarr) output: [1 2 3 4 5] with using print fun why it is coming in list format?
@codeitup4 жыл бұрын
That's why while printing numpy array we directly write the array name.
@nandana73152 жыл бұрын
it is not in the list format list format includes commas a=[1,2,3,4,5] print(a) output: [1,2,3,4,5] this is the list format
@SunitaBaram-e5x5 ай бұрын
Please make a video on OOP concept in python sir.
@FacebookInc. Жыл бұрын
sir mein abhi list pad raha hoon ye array concept kya sirf numpy mein hee padna theek rahega kya
@sauravkumar15644 жыл бұрын
Please make all video of numpy quickly before 12 board 2021 reply me please sir. Will you make it na??
@codeitup4 жыл бұрын
I will try my best !
@awakenedsouls32062 жыл бұрын
Sir append function is not working . It shows error saying int object has no attribute append
@prakritigupta56403 жыл бұрын
Sir "module numpy has no attribute 'array' " ... Ye error aarhi hai.... Kya kruu???
@nandana73152 жыл бұрын
can you share your code?
@khushalsapariya93042 жыл бұрын
sir i think so meko error aaya same cmd type kiya array size 6 liya 6 baar number enter kiya fir meko aaisa aaya array([], dtype=float64)
@Vaibhav_Bhardwaj Жыл бұрын
🥰🥰
@codeitup Жыл бұрын
😊
@anishsehgal86913 жыл бұрын
bro video is great but you going so fast ... you speak so frequently
@4k45hxd93 жыл бұрын
Sir code likhne ke baad jab mai ctrl+enter tap kr rha hu to sir arrow neeche chla ja rha hai programmme run nhi ho rha
@codeitup3 жыл бұрын
Strange !
@Wish-g4y2 жыл бұрын
Sbkuchh shi h sir..lekin thoda patience k sath boliye...speed k vjh se smjhne m thodi dikkat hoti hai..😐
@indianmusic34683 жыл бұрын
for i r in range ka bracket ma (n) kyu likha sir
@MRAgundli9 ай бұрын
done
@codeitup9 ай бұрын
👍
@broblox68542 жыл бұрын
import numpy as np a=[] n=int(input("Enter size of the array")) for i in range (n): val=int(input("Enter Number")) a.append(val) myarray=np.array(a) myarray For this code i have seen error , please help File "", line 5 val = int(input("Enter Number")) ^ IndentationError: expected an indented block
@nandana73152 жыл бұрын
just put a tab space before *val = int(input("Enter Number"))* and *a.append(val)*
@nandana73152 жыл бұрын
a=[ ] n=int(input("Enter size of the array")) for i in range (n): val=int(input("Enter Number")) a.append(val) myarray=np.array(a) myarray