Day 14 : Sets & Dictionaries | Python Course in Telugu | Vamsi Bhavani

  Рет қаралды 37,179

Vamsi Bhavani

Vamsi Bhavani

Күн бұрын

Пікірлер: 136
@VamsiBhavani
@VamsiBhavani 2 жыл бұрын
Assignments Q1: bit.ly/3aThJay Q2: bit.ly/3xPVdZl Q3: bit.ly/3Ql6Gr2 Q4: bit.ly/3QnSHRe Q5: bit.ly/3b1iGOa
@allinonec-1197
@allinonec-1197 2 жыл бұрын
Nenu sariga chuda ledu anna
@saikiraninamahanthi
@saikiraninamahanthi 11 ай бұрын
Aap Assignments Comment ko PIN karna Bhulgaya Bhai... baht dundne ka baad ye mila muje....
@ranga3194
@ranga3194 2 жыл бұрын
L = [1,2,3,4,5] for i in L : print(i, end = " ") i += 1 Output : 1 2 3 4 5
@pavansai751
@pavansai751 Жыл бұрын
Reason bro
@ashokaddanki4230
@ashokaddanki4230 Жыл бұрын
@@pavansai751 reason is we are printing it before incrementing
@venkataraman9728
@venkataraman9728 Ай бұрын
chala baaga cheptunnaru... u r really very nice n pure hearted person... may god bless u with health n happiness.
@amarnathavs1680
@amarnathavs1680 2 жыл бұрын
l=[1,2,3,4,5] for i in l: print(i,end=" ") i=i+1 o/p: 1 2 3 4 5 vastundi anna kani meeru 1 3 5 antunaru
@msksvj7235
@msksvj7235 2 жыл бұрын
Yes bro .. I also tried
@Bujji2568
@Bujji2568 Жыл бұрын
Yes me also getting same output..
@BALIGARISURENDRAREDDY2021-CSEU
@BALIGARISURENDRAREDDY2021-CSEU 2 ай бұрын
true can't given in out put beacuse 1 is also consider as true in boolean. set can't print duplicate values.
@RamuYadav-mc7gf
@RamuYadav-mc7gf 2 жыл бұрын
Hi Anna Thank you for teaching us 😊 Sets duplicate are not allowed kadha Anna So true= 1 already set lo 1 undhe andhuku 1 add kavatam ledhu
@nscreativeworks2231
@nscreativeworks2231 2 жыл бұрын
Anna Coding kuda daily Tutorials cheyara.please
@satya_kartik8795
@satya_kartik8795 Жыл бұрын
I patted my shoulder brother 😂. But frankly to say your lectures are very useful. Thank you bro.
@Kartheek0371
@Kartheek0371 2 жыл бұрын
Hi anna, i tried a.add("true'') and it worked
@mrdino9982
@mrdino9982 2 жыл бұрын
but din't work to me bro
@ramjisaladi4628
@ramjisaladi4628 Жыл бұрын
@@mrdino9982 Bro quations pattu true ke like:"true"......👍
@chindampavan5454
@chindampavan5454 Жыл бұрын
​@@ramjisaladi4628 but it was going to be string right.
@apecet2025
@apecet2025 Жыл бұрын
T should be captial ycoz its a Boolean
@k.lavanya7086
@k.lavanya7086 Жыл бұрын
I added True only it has worked
@mohammadabdulimran5176
@mohammadabdulimran5176 2 жыл бұрын
Days 14 & 15 Awesome Detailing about the topics
@koyelapatisuresh4088
@koyelapatisuresh4088 2 жыл бұрын
day 14 completed bro with all your guidance.
@Prashant.826
@Prashant.826 2 жыл бұрын
If you don't mind, your explanation is super.but your smile is so superb.
@phanideep1602
@phanideep1602 2 жыл бұрын
l = [1,2,3,4,5] for i in l: print(i,end=" ") i = i+1 option 1 is the right answer
@keertikrishnasreenivas13
@keertikrishnasreenivas13 3 ай бұрын
Anna add true in string format it is working
@UEEMadhuri
@UEEMadhuri 2 жыл бұрын
Anna a.add(true) is not working but a.add('true') is working anna, string la consider cheste avuthundi anna but here true anedi oka statement la theeskuntam kada anna?
@mr.june307
@mr.june307 Жыл бұрын
Just giving info about this who doesn't know if you know already plz simply ignore this comment: True is not adding, But False is adding in to sets because the boolean values of True = 1 & False = 0 . So here in the set already one is there , that's why True is not adding up
@vamsiroyal4824
@vamsiroyal4824 2 жыл бұрын
Anna day 9 varaku notes icharu But strings nundi ivvaledhu...?
@SuneethaB-oe1bp
@SuneethaB-oe1bp 3 ай бұрын
dear brother if we put it in quotes it is adding, ex:"true", instead of true, any way your explination is very superb, thankyou.
@kavithaa9970
@kavithaa9970 6 ай бұрын
i watched 36 minits and i patted my shoulder . thank u brother
@dhruva7369
@dhruva7369 2 ай бұрын
I try to add True it worked
@RAMESHKAKKERLA
@RAMESHKAKKERLA 5 ай бұрын
Hi Vamshi Bhavani garu, regarding SETS (UnOrdered), I found one thing. I practiced your example in multiple ways. Sets are UnOrdered, then also people facing issue as Elements of SET is displayed in Order. Actually, SETS are not following the elements order, but it will follows the DATA TYPE order, i.e. First INTEGERs, then FLOATs, then STRINGS. Try in this way, a = {'Ramesh',1,3.5,2} or a = {1,'Ramesh',3.5,2} or a = {1,3.5,2,'Ramesh'}. Please don't mind, if it is not correct.
@danaboinamuralikrishna
@danaboinamuralikrishna 4 ай бұрын
Hi bro what u r studying now plz reply me
@venkateswarareddytumu1870
@venkateswarareddytumu1870 2 жыл бұрын
True is keyword ,so we don't use keyword as a variable and accessing
@ssmusic7999
@ssmusic7999 Жыл бұрын
True is adding as SET item, only when i put it like string....... a.add('True')
@sivanagendramy2451
@sivanagendramy2451 Ай бұрын
second assignment answer is 1,2,3,4,5
@RamuYadav-mc7gf
@RamuYadav-mc7gf 2 жыл бұрын
Hi Anna Sets lo duplicate allow unadadhu kadha so true=1 already 1 setlo undhe So andheke true add kaledhu
@peterkarri6644
@peterkarri6644 2 жыл бұрын
It is working anna, it should be in quote
@peterkarri6644
@peterkarri6644 2 жыл бұрын
a.add('true'), it should be defined as string
@pogalaharshitha398
@pogalaharshitha398 Жыл бұрын
thank you anna lots of love and respect from bottom of my heart
@rajshekarkothapelly6861
@rajshekarkothapelly6861 Жыл бұрын
thank you so much vamsi anna ❤
@haarikayashodha6511
@haarikayashodha6511 Жыл бұрын
Tuple ki use chese danni paranthesis antaaru..broo😊..
@haridwathiadepu5715
@haridwathiadepu5715 2 жыл бұрын
anna a.add(''true'') worked here,it is consider as string
@ajaychintu6153
@ajaychintu6153 Жыл бұрын
thanks for information, it worked.
@NageshVizag
@NageshVizag 11 ай бұрын
Excellent bro, try to do chat gpt prompts concepts
@hemanthlifts
@hemanthlifts Жыл бұрын
bro in set while you r explaining you want to add collans for true
@akhiltammineedi4513
@akhiltammineedi4513 2 ай бұрын
I dont see assignment questions below the videos
@My_Creativity-143.
@My_Creativity-143. 6 ай бұрын
Anna notes laidhu
@sravanidevireddy2871
@sravanidevireddy2871 11 ай бұрын
true is a string we have to give " " so ,its not working
@DeviLokanadam
@DeviLokanadam 7 ай бұрын
Hi Anna, I tried to add True to the set, but its not getting added.
@yogendrasrinivas6092
@yogendrasrinivas6092 2 жыл бұрын
18.51 degira true enduku raledu antey true ni qutos lo evaledu ga
@butterfly-225
@butterfly-225 4 ай бұрын
Sets and dictionaries are mutable anna
@s_dhanush_agarwal
@s_dhanush_agarwal 2 жыл бұрын
anna dict functions okasari malli cheptara pls theory lo and malli practical gaa kuda
@tdlmvs
@tdlmvs 6 ай бұрын
hi vamsi i tried for loop the answer i am getting is different
@BinduMidde-ro9eb
@BinduMidde-ro9eb Жыл бұрын
Give string to true bro its working
@mvasavi777
@mvasavi777 Жыл бұрын
Types of errors explain cheyyara
@jagadeswarreddyreddam5637
@jagadeswarreddyreddam5637 2 жыл бұрын
Anna 20:20 daggara 3 anedhi set lo ordered print ayyindhi yendhuku set anedhi inordered kada and add() fn last lo add chestundi kada
@sathvikch2070
@sathvikch2070 Жыл бұрын
sets lo ey case lo different order print avty?
@s_dhanush_agarwal
@s_dhanush_agarwal 2 жыл бұрын
true ki meeru "" ivvaledu anna string ki
@mrdino9982
@mrdino9982 2 жыл бұрын
real bro . bro missed putting string to "true"
@manipuripavani6784
@manipuripavani6784 Жыл бұрын
Day 13 lo second example answer 1 2 3 4 5
@rakshirakshitha9171
@rakshirakshitha9171 2 жыл бұрын
Anna notes upload cheyyaledu Anna enduku
@nagendraraju3257
@nagendraraju3257 2 жыл бұрын
18:40 Change intlo string bro "true"
@phanideep1602
@phanideep1602 2 жыл бұрын
but False is adding without changing in to string
@karimillivijayalakshmi9111
@karimillivijayalakshmi9111 Жыл бұрын
Dictionary ordered ani cheppaaru. Hobbies add chesaka b ni print chesinappudu order maripoyindi ela???
@Ush123_1
@Ush123_1 Жыл бұрын
Bro he said know it depends on version of python...
@harikrishnapasupula
@harikrishnapasupula Жыл бұрын
Wassum brother
@rajsekharyadav3588
@rajsekharyadav3588 Жыл бұрын
True taken as 1 so 1 is already there. So duplicate
@priyasimhap2721
@priyasimhap2721 2 жыл бұрын
Bro Thonny lo chae Anna programs plzzzz 🙏
@janapaneediChakradhar
@janapaneediChakradhar 10 ай бұрын
"true"
@mrdino9982
@mrdino9982 2 жыл бұрын
thank you bro
@shyamalashyamala2416
@shyamalashyamala2416 2 жыл бұрын
Anna description lo assignment links pettu anna
@naveennasina7472
@naveennasina7472 2 жыл бұрын
Notes akkada
@manipuripavani6784
@manipuripavani6784 Жыл бұрын
Kadha sir
@sowmya4443
@sowmya4443 2 жыл бұрын
where is the notes sir
@APNavya
@APNavya 2 жыл бұрын
Notes pettatle enti anna
@panagantijhansy
@panagantijhansy Жыл бұрын
Anna i =i+1 And i +=1 are both different
@manognashetty6296
@manognashetty6296 Жыл бұрын
No, they r same.. i+=1 is in coding lang.. and we calculate it as i=i+1
@mohan4185
@mohan4185 Жыл бұрын
Same ordered vastundi anna😂😂
@entertainment_773
@entertainment_773 2 жыл бұрын
Hai ... guruji please update class notes pdf
@raghaakhil4118
@raghaakhil4118 Жыл бұрын
notes vunda metho?? vunta share chaindi??
@saiteja6604
@saiteja6604 11 ай бұрын
a = {2,3.5,'sai',} a.add('true') print(a) /// a = {2,3.5,'sai',} t = 'true' a.add(t) print(a) in both cases getting o/p like this o/p : {'sai', 2, 3.5, 'true'}
@Ssdeals1234
@Ssdeals1234 3 ай бұрын
True means 1 so it cannot take 20:03
@kadamkirankumar5319
@kadamkirankumar5319 2 жыл бұрын
AnNa python in sets lo true ante 1 false ante 0 thats way akada alredy 1 undi kabati enka true tiskodu endhuku ante adi duplicates ni allow cheyadu kaBati..
@SumithraPatnam-z1x
@SumithraPatnam-z1x 3 ай бұрын
Anna meeru true ni inverted commas lo pettaledu andukani raaledu anukunta
@dhruva7369
@dhruva7369 2 ай бұрын
I try to add True with colons and without colons both were worked
@advithakalimisetty3254
@advithakalimisetty3254 2 ай бұрын
please put ' ' to true it will add
@venkataraman9728
@venkataraman9728 Ай бұрын
jai hind... jai bharat.
@NavyaVarshitaChellaboyina
@NavyaVarshitaChellaboyina Жыл бұрын
Notes kavali anna
@GuestName-dg8lf
@GuestName-dg8lf Жыл бұрын
True is a key word
@pavithrabonthu9094
@pavithrabonthu9094 8 ай бұрын
Hi anna, thank you for your classes I have small rectification meru true use chesthuntey print avvatle kadha . ‘True’- string type lo use cheyandi it is working
@venkymalleswarapu4709
@venkymalleswarapu4709 11 ай бұрын
bro day 14 assignments description lo ivaledhu
@techie9962
@techie9962 Жыл бұрын
Set ennisarlu print chesina alage print avuthundhi but adhi create chesinappudu unordered ga create avuthundhi So enni sarlaina alage print avuthundhi Nenu enni sets create chesina first time unordered ga vasthundhi Aa tharvatha prathi sari 1st one laga ne vasthundhi
@harsha_the_analyst
@harsha_the_analyst Жыл бұрын
12 mins 29 Secs deggara list nee unordered annavu Anna kani Akkada set kadha Unordered ? Apart from that your teaching is Excellent Anna💯
@surendrasomireddy9263
@surendrasomireddy9263 9 ай бұрын
bro 'true' string kadha quotes pettakunda ela add avthundhi
@taruntarun3354
@taruntarun3354 Жыл бұрын
approx 19 min true ni akkada bracket lo string rupam lo pedithe vachindi bro,i mean "true" in bracket
@nvsmanohar
@nvsmanohar 4 ай бұрын
True Anedi string lo ivvali anna
@vinthkonkati1671
@vinthkonkati1671 Жыл бұрын
anna nen nv cgesina laane for loop lo for x in a chesaka malli a in x chesthe multiple tymes print avthundi y
@kavya322
@kavya322 2 жыл бұрын
code studio lo inka assignment problems explain chesthara
@nageshyadav8019
@nageshyadav8019 9 ай бұрын
It's not working but I can give Quotes its work with out quotes doesn't work
@RamuYadav-mc7gf
@RamuYadav-mc7gf 2 жыл бұрын
Hi Anna Sets lo duplicate not allowed So true=1 endhuke 1 add kavatamledhu
@nagendraraju3257
@nagendraraju3257 2 жыл бұрын
True ni string loki convert chesthe add avthundhi. " true "
@mrdino9982
@mrdino9982 2 жыл бұрын
bro try to put str to it
@saikiraninamahanthi
@saikiraninamahanthi 11 ай бұрын
why we got keys in horizontal order , and their values in vertical order? though we didnt specified it?
@surendrasomireddy9263
@surendrasomireddy9263 9 ай бұрын
bro ...i have got an unordered set... if u want ill send a screenshot
@devijavvadi6432
@devijavvadi6432 2 жыл бұрын
Naku assignment questions ravatledu annaya
@VijayKumar-hm1be
@VijayKumar-hm1be Жыл бұрын
True is a keyword kadha bro ndk add Eva ledhu emo bro
@suvarnarajuchalla8621
@suvarnarajuchalla8621 2 жыл бұрын
sir real ga it sector lo ela use chestaro chppandi sir maku chala use avutundhi
@s_dhanush_agarwal
@s_dhanush_agarwal 2 жыл бұрын
anna operators eppudu anna identity and member cheppal kada
@lavanyasbeautysalonacademy
@lavanyasbeautysalonacademy 2 жыл бұрын
i didn't worked anna,i thnk maybe a problem in colabaratory
@mohankrishna9853
@mohankrishna9853 2 жыл бұрын
Hii anna please naa message kuu reply ivvandi
@anjaneyulunakka-c6u
@anjaneyulunakka-c6u Жыл бұрын
1 is binary and it indicates true that's why its not printed
@SrikanthReddy_A
@SrikanthReddy_A Жыл бұрын
'true' chesthe vasthundhiii
@allinonec-1197
@allinonec-1197 2 жыл бұрын
Assignment kanapadatam ledhu anna
@venkymalleswarapu4709
@venkymalleswarapu4709 11 ай бұрын
anna day 14 & 15 notes ivaledhu anna'
@nikhilpragada1562
@nikhilpragada1562 2 жыл бұрын
Assignment levu kada anna
@ssmusic7999
@ssmusic7999 Жыл бұрын
Hi Anna I'm started learning Python from ur videos, I tried to print SETs got unordered at first attempt😀.Thankyou
@lakshmannallagorla1500
@lakshmannallagorla1500 Жыл бұрын
True is a string
@raghaakhil4118
@raghaakhil4118 Жыл бұрын
Notes ala bro????????????////
@Hemanth.13_12
@Hemanth.13_12 2 жыл бұрын
Anna nenu diploma mech complete avuthundhi nenu betch lo cse join avvali anukuntunna Naku c language and c plus plus nerchukunna trining lo but Naku intrest tho cse lo join avalli anukuntunna subjects and topics ardham avuthaya plese and polite request anna chappu anna🙏🏻🙏🏻
@durgapavangedela1557
@durgapavangedela1557 2 жыл бұрын
Brother personal suggestion is u join CSE ,and core concepts ki NPTEL saripotundi. And for programming and practice chala videos dorukutayee. All the best for your future
@pravalikamarupatla6885
@pravalikamarupatla6885 2 жыл бұрын
thank you annaiya
Day 13 : Lists & Tuples | Python Course in Telugu | Vamsi Bhavani
32:01
Man Mocks Wife's Exercise Routine, Faces Embarrassment at Work #shorts
00:32
Fabiosa Best Lifehacks
Рет қаралды 5 МЛН
Cute
00:16
Oyuncak Avı
Рет қаралды 12 МЛН
ПРИКОЛЫ НАД БРАТОМ #shorts
00:23
Паша Осадчий
Рет қаралды 6 МЛН
Day 17 : OOPS Introduction | Python Course in Telugu | Vamsi Bhavani
22:35
Python lists, sets, and tuples explained 🍍
15:06
Bro Code
Рет қаралды 277 М.
Fastest way to learn coding [Telugu] | Vamsi Bhavani
10:58
Vamsi Bhavani
Рет қаралды 25 М.
Day 16 : Recursion | Python Course in Telugu | Vamsi Bhavani
24:04
Vamsi Bhavani
Рет қаралды 34 М.
Man Mocks Wife's Exercise Routine, Faces Embarrassment at Work #shorts
00:32
Fabiosa Best Lifehacks
Рет қаралды 5 МЛН