Creating One Dimensional Array Using Numpy - In Hindi

  Рет қаралды 54,699

codeitup

codeitup

Күн бұрын

Пікірлер: 46
@BABLISINGH-wf8dw
@BABLISINGH-wf8dw 4 жыл бұрын
One of the easiest and clean method... Thankyou so much sir. Keep rocking.
@codeitup
@codeitup 4 жыл бұрын
Thanks Babli.. :)
@farookansari839
@farookansari839 4 жыл бұрын
You have great capabilities to describe. Seedha dimag me..
@codeitup
@codeitup 4 жыл бұрын
Ha ha thanks😊
@itsmehere143
@itsmehere143 2 жыл бұрын
you teaching style is osam
@codeitup
@codeitup 2 жыл бұрын
Thanks Ayush!
@tanvirgsm
@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.
@hdjfjd8
@hdjfjd8 2 жыл бұрын
helpful tutorial series on numpy
@codeitup
@codeitup 2 жыл бұрын
😊
@muhammadsahilmusa
@muhammadsahilmusa 2 жыл бұрын
Shukriya Anand Bhai
@codeitup
@codeitup 2 жыл бұрын
😊
@aryansingh4092
@aryansingh4092 4 жыл бұрын
boht badiye
@codeitup
@codeitup 4 жыл бұрын
Thanks !
@alimorteza6103
@alimorteza6103 4 жыл бұрын
5:37 par Apne kaha list wali video, please uski link add karden
@codeitup
@codeitup 4 жыл бұрын
kzbin.info/www/bejne/fXW3oGucrtx_m5I
@vlogtypea3201
@vlogtypea3201 2 жыл бұрын
Thankyou very much
@codeitup
@codeitup 2 жыл бұрын
Always welcome😊
@shivanshsingh5555
@shivanshsingh5555 4 жыл бұрын
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?
@codeitup
@codeitup 4 жыл бұрын
That's why while printing numpy array we directly write the array name.
@nandana7315
@nandana7315 2 жыл бұрын
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-e5x
@SunitaBaram-e5x 5 ай бұрын
Please make a video on OOP concept in python sir.
@FacebookInc.
@FacebookInc. Жыл бұрын
sir mein abhi list pad raha hoon ye array concept kya sirf numpy mein hee padna theek rahega kya
@sauravkumar1564
@sauravkumar1564 4 жыл бұрын
Please make all video of numpy quickly before 12 board 2021 reply me please sir. Will you make it na??
@codeitup
@codeitup 4 жыл бұрын
I will try my best !
@awakenedsouls3206
@awakenedsouls3206 2 жыл бұрын
Sir append function is not working . It shows error saying int object has no attribute append
@prakritigupta5640
@prakritigupta5640 3 жыл бұрын
Sir "module numpy has no attribute 'array' " ... Ye error aarhi hai.... Kya kruu???
@nandana7315
@nandana7315 2 жыл бұрын
can you share your code?
@khushalsapariya9304
@khushalsapariya9304 2 жыл бұрын
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
@Vaibhav_Bhardwaj Жыл бұрын
🥰🥰
@codeitup
@codeitup Жыл бұрын
😊
@anishsehgal8691
@anishsehgal8691 3 жыл бұрын
bro video is great but you going so fast ... you speak so frequently
@4k45hxd9
@4k45hxd9 3 жыл бұрын
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
@codeitup
@codeitup 3 жыл бұрын
Strange !
@Wish-g4y
@Wish-g4y 2 жыл бұрын
Sbkuchh shi h sir..lekin thoda patience k sath boliye...speed k vjh se smjhne m thodi dikkat hoti hai..😐
@indianmusic3468
@indianmusic3468 3 жыл бұрын
for i r in range ka bracket ma (n) kyu likha sir
@MRAgundli
@MRAgundli 9 ай бұрын
done
@codeitup
@codeitup 9 ай бұрын
👍
@broblox6854
@broblox6854 2 жыл бұрын
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
@nandana7315
@nandana7315 2 жыл бұрын
just put a tab space before *val = int(input("Enter Number"))* and *a.append(val)*
@nandana7315
@nandana7315 2 жыл бұрын
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
@Shahbaazgamingyt
@Shahbaazgamingyt 4 жыл бұрын
🤧🤧🤫🤫🙄🙄
@codeitup
@codeitup 4 жыл бұрын
:)
@VishalKumar-fe4wx
@VishalKumar-fe4wx Жыл бұрын
Your screen are not visible
@debatradas1597
@debatradas1597 2 жыл бұрын
thank you so much
@codeitup
@codeitup 2 жыл бұрын
Most welcome!
Creating Two Dimensional Array Using Numpy - In Hindi
6:33
codeitup
Рет қаралды 38 М.
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 8 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 53 МЛН
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 14 МЛН
Numpy Vs List - In Hindi
10:53
codeitup
Рет қаралды 10 М.
ARRAYS in Python - Start Here!
5:25
The Comparison Channel
Рет қаралды 68 М.
Various Operations on Numpy Array - In Hindi
11:55
codeitup
Рет қаралды 18 М.
Python dataclasses will save you HOURS, also featuring attrs
8:50
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 8 МЛН