Returning Value & Global Scope | Class 12 Computer Science - Python 09

  Рет қаралды 269,001

Apni Kaksha Official

Apni Kaksha Official

Күн бұрын

Пікірлер: 558
@mistykurien6146
@mistykurien6146 3 жыл бұрын
The LEGB explanation was superb! Thank you!
@amisha7380
@amisha7380 8 ай бұрын
13:02 for q1 , can we do like this ??:- a=2 def cube(a): b=a**3 return(b) print(cube(a)) >>> 8 print(cube(5)) >>> 125
@syedasrar3563
@syedasrar3563 8 ай бұрын
Yeah
@Utkarsh_Singh0_0
@Utkarsh_Singh0_0 2 ай бұрын
but in question it say first we have take input from user
@_parker._.editz_
@_parker._.editz_ 2 ай бұрын
@@Utkarsh_Singh0_0 then do while(1): a = int(input('Enter number')) def cube(a): b = a*a*a return(b) print(cube(a))
@deeyaverma6442
@deeyaverma6442 3 жыл бұрын
I am loving these videos, now my concepts are getting clear. Thank you very much to this beautiful channel.💖💖💖
@X-Joker7
@X-Joker7 9 ай бұрын
Hii
@AbhishekVerma09
@AbhishekVerma09 4 жыл бұрын
Bhaiya December tak Python course complete kra dijiye taaki Jan waale PreBoard mein pura padh k jaa ske. 🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗
@guruduttapradhan5637
@guruduttapradhan5637 3 жыл бұрын
Bhai maine to abhi tak kuch nahi padha
@ShahidKhan-jn7lg
@ShahidKhan-jn7lg 3 жыл бұрын
@@guruduttapradhan5637 I got 96% 😎 in boards due to cancellation 😂 based on class 11 and preboards 😂
@atharvasarva8262
@atharvasarva8262 4 жыл бұрын
Yesterday, I came to know about this python course and I have completed all your videos thankyou bhaiya..❤️
@tanujasharma1262
@tanujasharma1262 3 жыл бұрын
@Big Boss hihi
@anshumaangangwar
@anshumaangangwar 3 жыл бұрын
You completed the whole course in a single day. That is something God level.
@gunjanpathak8498
@gunjanpathak8498 Жыл бұрын
Where u are now ??
@gopikagoyal5582
@gopikagoyal5582 4 жыл бұрын
Sir plzz gives a notes of this lecture it's humble request 🙏🙏🙏🙏
@Gurpreet_5911_
@Gurpreet_5911_ 3 жыл бұрын
phele bhi 2 videos me nahi the
@danishfirdaus4607
@danishfirdaus4607 3 жыл бұрын
We need... Notes 😑😑😑😑 giving improvement
@rumabhattacharya9396
@rumabhattacharya9396 3 жыл бұрын
Check description waha Google drive pe notes h🙂
@ayushsahu8856
@ayushsahu8856 3 жыл бұрын
@@rumabhattacharya9396 Are ABHAY
@rumabhattacharya9396
@rumabhattacharya9396 3 жыл бұрын
@@ayushsahu8856 😎😎
@harshvardhansingh5903
@harshvardhansingh5903 4 жыл бұрын
Thanks sir...u are doing a great job...but complete the syllabus fast
@jamesjackson8619
@jamesjackson8619 4 жыл бұрын
When will the notes be uploaded??
@digitalissue6744
@digitalissue6744 3 жыл бұрын
notes kaha h
@mhtcetclassroom136
@mhtcetclassroom136 3 жыл бұрын
Notes????....boards aa rahe h😭
@mr.clowney1525
@mr.clowney1525 3 жыл бұрын
Abe to bna lo vedio dekh ke
@chaitanyamahajan3859
@chaitanyamahajan3859 3 жыл бұрын
@@mr.clowney1525 abe last mein bola ki "link se question kar loge toh". toh vo link kaha hai?
@TiTaN_WASD
@TiTaN_WASD 3 жыл бұрын
@@chaitanyamahajan3859 bro pata nai ab toh bhagwan bachaega book ke question laga lo
@amalghosh2741
@amalghosh2741 4 жыл бұрын
Now I can learn Python from here...😄😄as I am a student of class 10...
@amalghosh2741
@amalghosh2741 4 жыл бұрын
@kryptex farmy thank you bhaiya..😄😄
@amalghosh2741
@amalghosh2741 4 жыл бұрын
@kryptex farmy yes bhaiya..😄
@gopal.
@gopal. 4 жыл бұрын
Last question def func(a,b): a = str(a) b = str(b) print(a,b) if a[-1] < b[-1]: print(a[ - 1]) else: print(b[ -1 ]) p = '23' q = 34 func(p,q)
@chandrashekharmishra5382
@chandrashekharmishra5382 4 жыл бұрын
@@gopal. thora edit karna padega aapko same unit digits pe wrong output dega program{your} def func(a,b): a = str(a) b = str(b) print(a,b) if a[-1] < b[-1]: print(a[ - 1]) if a[-1] == b[-1]: print(f'both number's unit digits are same') else: print(b[ -1 ]) p = '23' q = 34 func(p,q) by the way great idea.
@gopal.
@gopal. 4 жыл бұрын
@@chandrashekharmishra5382 Yes man, Thanku so much!💯
@studyingid28
@studyingid28 3 жыл бұрын
Bhaiya void function ke naam par GARGANTULA ki photo dikha kar aapne, mere mann mein apne liye respect aur bda di hai!!!..... Kudos to the editor too!!
@PrOgRaMmE_12
@PrOgRaMmE_12 8 ай бұрын
14:10 Another way to solve that problem is to convert both the integers into string and then get the last digit def min_ones(a, b): a = str(a) b = str(b) if a[-1] < b[-1]: return a return b print(min_ones(1230, 923)) >>> 1230 print(min_ones(324, 25)) >>> 324 print(min_ones(9909, 9990)) >>> 9990
@Hegdehog69
@Hegdehog69 8 ай бұрын
Convert into *string
@shivayan1405
@shivayan1405 Жыл бұрын
sir where can i find the coding practices for the python? the discription has no link for the practice sheets
@anmol.ag7
@anmol.ag7 4 жыл бұрын
We all Appreciate the hard work you and your team is doing. Without ques we have faith in you 🙏
@sristiunfiltered
@sristiunfiltered 4 жыл бұрын
bhaiya I saw you in my dreams many times... I really want to go to meet you in real life.. I'm your die hearted fan 🥺❤❤❤❤❤❤
@ayangoswami872
@ayangoswami872 4 жыл бұрын
me too 🥺🥺
@atharvasarva8262
@atharvasarva8262 4 жыл бұрын
Will SQL covered in the course?? Like to support my query👇
@Mallya_exe
@Mallya_exe 4 жыл бұрын
Yes Bro..Bhaiya said it will be ..on Plus..❤️
@atharvasarva8262
@atharvasarva8262 4 жыл бұрын
@@Mallya_exe but it should be in apni kaksha
@Mallya_exe
@Mallya_exe 4 жыл бұрын
@@atharvasarva8262 yeah here itself..he just answered the same doubt there.😉
@chandrashekharmishra5382
@chandrashekharmishra5382 4 жыл бұрын
@@Mallya_exe in cs section on unacadmey.??
@Mallya_exe
@Mallya_exe 4 жыл бұрын
@@chandrashekharmishra5382 nope iitjee..
@dishu8674
@dishu8674 4 жыл бұрын
1:28 I literally slapped my face thrice 😭😭 😂😂
@Raj-mo8kh
@Raj-mo8kh 4 жыл бұрын
I hope, u don't need this next time.
@dishu8674
@dishu8674 4 жыл бұрын
@@Raj-mo8kh I hope so too
@coder_rc
@coder_rc 4 жыл бұрын
Did this too
@dishu8674
@dishu8674 4 жыл бұрын
@@coder_rc 😂😂
@teqarine5752
@teqarine5752 4 жыл бұрын
lol noob!
@PavitrAshlia20
@PavitrAshlia20 8 ай бұрын
15:50 def qala(): num1=int(input()) num2=int(input()) if num1%10 >num2%10: print("num2 has smallest ones digit") if num1%10
@AmanKumar-ev7ix
@AmanKumar-ev7ix 4 жыл бұрын
It would be really helpful if you could also tell about how to make class 12 computer project :)
@shubhangiroy6672
@shubhangiroy6672 3 жыл бұрын
Very nice and helpful explanation....solved all my problems...... 12:40 practice time but one thing I noticed first was goku....
@X-Joker7
@X-Joker7 9 ай бұрын
Hiii
@riyaphogat3550
@riyaphogat3550 4 жыл бұрын
Firstly, Thanks a lot bhaiya maine 3 hours pehle hi next video k liye comment kiya or aapne video upload b kardi thanks 😊 and also thanks to all the tutors of apni kaksha who do that hardwork for us that's free ....... It takes a lot of time to make and edit these animated videos of the best quality content. Again a very very thank you to your whole team. And keep it up , we are with you.
@priyanshu____3
@priyanshu____3 2 жыл бұрын
Bhai tere bolne pe upload nhi ki hain pehle se hi record rHi hogi tabhi ki hogi n upload
@shruti6200
@shruti6200 4 жыл бұрын
Its a humble request Please upload lectures fast ... many have their pre boards in December ..!!
@VishnuKumar-vq4pl
@VishnuKumar-vq4pl Жыл бұрын
Ye description me questions kha pr h??? Mujhe dikhte hi nhi
@dhruv5994
@dhruv5994 3 жыл бұрын
1:28 frr se list n tuple wali video dekhi 😂😂😂😂😂😂😯😯✌️😂
@gopal.
@gopal. 4 жыл бұрын
My take on last question: def func(a,b): a = str(a) b = str(b) print(a,b) if a[-1] < b[-1]: print(a[ - 1]) else: print(b[ -1 ]) p = '23' q = 34 func(p,q)
@chandrashekharmishra5382
@chandrashekharmishra5382 4 жыл бұрын
thora edit karna padega aapko same unit digits pe wrong output dega program{your} def func(a,b): a = str(a) b = str(b) print(a,b) if a[-1] < b[-1]: print(a[ - 1]) if a[-1] == b[-1]: print(f'both number's unit digits are same') else: print(b[ -1 ]) p = '23' q = 34 func(p,q) by the way great idea.
@gopal.
@gopal. 3 жыл бұрын
@@chandrashekharmishra5382 thanks man!🔥
@ritwiz1309
@ritwiz1309 3 жыл бұрын
I did this question in the same way.
@Injured-f6m
@Injured-f6m 4 жыл бұрын
Sir please complete this python syllabus fast please. !! You're the best sir thanks for all these
@udaykumarjha9587
@udaykumarjha9587 4 жыл бұрын
sir ek doubt hai ki cube print krane wale program mein hmne function to call hi nhi kiya fir kaise print ho skta hai . plss help
@anshmishra3066
@anshmishra3066 3 жыл бұрын
@10:40..... I tried running the third program previously......But this program gave error!.....The problem is that the newer version of python doesn't support giving global in the second line..... Giving global a in the very next line after function definition will give appropriate results!!.. Thank you😃
@godlovegaming5416
@godlovegaming5416 2 жыл бұрын
bro which line i didn't understand , very next line is 1st line right but it's not working please reply and solve or give the whole code
@kartikkumarmishra7867
@kartikkumarmishra7867 4 жыл бұрын
Sir please jald se jald notes provide kar diya kijiye kyunki sir dimag mien rehta hai toh kuch khud se ban jata hai aur kuch notes se ..... Toh sir bas koshish karien ki jald se jald notes provide kar diye jaye ...... You all are doing a great work
@PavitrAshlia20
@PavitrAshlia20 8 ай бұрын
13:28 def cube(num=2): num=int(input()) print(num*num*num) cube(num=2) more perfect way
@wishing_pearl
@wishing_pearl 8 ай бұрын
Num**3
@DwivV
@DwivV 3 жыл бұрын
Helping me so much to clear my doubts with a very vivid explanation ! Thanku
@imnoob194
@imnoob194 4 жыл бұрын
Notes upload krdo plzz....last lecture ke bhi
@preetijain3562
@preetijain3562 4 жыл бұрын
14:30 Can we do it even like this? def digit(a,b): l1=len(a) l2=len(b) if a[l1-1]
@ParvTandon
@ParvTandon 2 жыл бұрын
No
@muskanchaudhary84
@muskanchaudhary84 4 жыл бұрын
Thanks harsh bhaiya 😊😊 Maja aa gaya vedio dekh kar 🎊🎊🎊
@Sonam_792
@Sonam_792 3 жыл бұрын
Bhiya is lecture ke notes....?
@shauryaparashar5510
@shauryaparashar5510 3 жыл бұрын
Notes not available
@ravikumarsrivastav8036
@ravikumarsrivastav8036 Жыл бұрын
13:20 def cube(a=2): return a**3 Print(cube(input('enter a no.')))
@bytequest1552
@bytequest1552 4 жыл бұрын
Bhaiya when will notes be uploaded. Upload as soon as possible, please and thanks for all the investments from you and all apni kaksha team members.
@kamalsundarsk3164
@kamalsundarsk3164 3 жыл бұрын
I FEEL BAD FOR THE 60K STUDENTS WHO SLAPPED THEMSELVES
@farheen_18
@farheen_18 2 жыл бұрын
lol. Not one of them now. But jab 2 months Pehle dekhi thi for a unit test--- I was one among them 😅😅😅😅
@Iqraviqar
@Iqraviqar 2 ай бұрын
Wdym? Isn't this enough
@shauryaparashar5510
@shauryaparashar5510 3 жыл бұрын
Notes plz
@gammoron
@gammoron 3 жыл бұрын
Bhaiyya at 10;32 We have to declare the changed global variable in a separate line X= 'blah blah' def func(): global X X = 'delhi' func() print(X) ------------------------- Then X will become 'delhi' Otherwise it's giving syntax error.
@gammoron
@gammoron 3 жыл бұрын
If we write in the same line, global X = 'delhi', it's gonna give an error
@sguha8269
@sguha8269 4 жыл бұрын
I hope this channel reaches 1 M subscribers soon
@arvy10
@arvy10 4 жыл бұрын
Thanks aman bhaiya for all these
@phoenix5195
@phoenix5195 3 жыл бұрын
Amazing lecture!!😍
@_mohitg
@_mohitg 4 жыл бұрын
Networking vale ch ki vdeos bhi laoge na sir ??
@sahzadhussain12e46
@sahzadhussain12e46 4 жыл бұрын
*Where is the link for practice questions?*
@anujchaudhary1844
@anujchaudhary1844 Жыл бұрын
Sir last mai practice questions ke ek bhi program ki output nhi ari he But Explanation was nice 👍
@gaurvigupta1218
@gaurvigupta1218 3 жыл бұрын
Yess ... bhaiya , question bhi nhi hai or notes ka link bhi nhi hai.... please upload it...🙏🙏 request....
@dakshjain6673
@dakshjain6673 4 жыл бұрын
NOTES?
@ishmeetsingh943
@ishmeetsingh943 3 жыл бұрын
sir apne bolla ke description mai ques ka link hai but ptani kyu visible nhi horahi
@ashishpradhan748
@ashishpradhan748 4 жыл бұрын
Notes are not in discription
@AbhishekSharma-wt3st
@AbhishekSharma-wt3st 4 жыл бұрын
Bhaiya kha h practice questions description Mai nahi h 😟😟
@mindmentor4981
@mindmentor4981 4 жыл бұрын
Bhaiya thank you much and thanks to your team . but aape notes bhi upload karagaye in sab ke . aur appe sql and computer networking bhi cover karagaye . please reply bhaiy
@prathammishrah
@prathammishrah Жыл бұрын
2:44 hassi nikal gayi bhai ki XD
@ishaangarg8292
@ishaangarg8292 3 жыл бұрын
Thankyou bhaiya and team....AB TO PHODENGE
@VINAYKUMAR-ms5pz
@VINAYKUMAR-ms5pz 3 жыл бұрын
bhai bohot saree lectures ke notes nahi hai please de doo
@hariniavanthika11
@hariniavanthika11 4 жыл бұрын
Thanks bhaiya.
@sugamgupta9595
@sugamgupta9595 3 жыл бұрын
Bhaiya questions ka link kya hai
@stackCrafters
@stackCrafters 3 жыл бұрын
Please provide notes of lecture
@owesmehboob3829
@owesmehboob3829 2 жыл бұрын
Sir last question may elif and else kyu nahi use Kiya??
@dhrvchauhan
@dhrvchauhan 4 жыл бұрын
Dictionaries se aage ke notes kab tak milenge?
@umarsyed853
@umarsyed853 3 жыл бұрын
Sir when will notes come sir
@learningtoearning8130
@learningtoearning8130 3 жыл бұрын
Kab tak late hoga
@user-ky6hp6hi7v
@user-ky6hp6hi7v 3 жыл бұрын
Thank you so much sir 💖 Sirf aap ki wajah se ajj paper fod k aaya Jitna thank you bolu utna kam hai ☺️
@anshumanarya9215
@anshumanarya9215 3 жыл бұрын
Bhyya practice k lie questions daldo pls description pe
@benstokes8376
@benstokes8376 4 жыл бұрын
I'm a bio student but came to like and comment. Aman Bhaiya and Co. 🙏🏼
@ramdasvimal5592
@ramdasvimal5592 4 жыл бұрын
Bio hai toh kya hua maine computer science li hai physical nahi
@benstokes8376
@benstokes8376 4 жыл бұрын
@@ramdasvimal5592 Mera vaisa combination nahi hai
@ramdasvimal5592
@ramdasvimal5592 4 жыл бұрын
@@benstokes8376 aapne physical education li hai
@benstokes8376
@benstokes8376 4 жыл бұрын
@@ramdasvimal5592 Nahi humare yaha sirf Eco , Comp , Bio . 5 sub only
@Hello-wv8hg
@Hello-wv8hg 4 жыл бұрын
the practice question of previous video is still unavailable
@ayush-bf2rs
@ayush-bf2rs 4 жыл бұрын
are bhai bhai bhai kmaal ho yaar
@_minions_6388
@_minions_6388 3 жыл бұрын
Ip ka course kab aayega bhaiya .... ? Please jaldi karo
@desicoder4755
@desicoder4755 2 жыл бұрын
where are the more problems for practice , not finding it in the description ,, help me
@snehalthakare2822
@snehalthakare2822 4 жыл бұрын
Sir Jo questions krne bolte hai description se woh kaha PR hai
@hemasreevaliveti7952
@hemasreevaliveti7952 3 жыл бұрын
Where are the links for notes?..... I'm unable to find them
@digitalissue6744
@digitalissue6744 3 жыл бұрын
i also
@vyshnav2488
@vyshnav2488 3 жыл бұрын
Sir the note of this hasn't been uploaded
@RANJEETKUMAR-bc1su
@RANJEETKUMAR-bc1su 4 жыл бұрын
Link is not given in description
@neontuts5637
@neontuts5637 4 жыл бұрын
Thank You sir for covering the scoping concept. You cleared the doubts I had on scoping thank you once again.
@Gxluy
@Gxluy 4 жыл бұрын
Thanks sir
@studioustok
@studioustok 2 жыл бұрын
Description mai Q kahan h sir?
@healthfitness6139
@healthfitness6139 3 жыл бұрын
8:30 enclosing mtlb??
@hyperlegend2778
@hyperlegend2778 3 жыл бұрын
BHAIYA DESCRIPTION PE NA HI QUESTIONS HAI NA HI NOTES, PLS UPLOAD QUICKLY WE HAVE FULL FAITH IN YOU
@tusharsahu2119
@tusharsahu2119 3 жыл бұрын
rip faith
@ashraf5151
@ashraf5151 3 жыл бұрын
@@tusharsahu2119 rip
@underratedpanda7775
@underratedpanda7775 3 жыл бұрын
bhya where is the link of questions ??? plzz some one help
@surprabhat1231
@surprabhat1231 8 ай бұрын
Cramming a night before exam......
@Nikhilpal054
@Nikhilpal054 2 жыл бұрын
where is question in description
@parvarora5541
@parvarora5541 4 жыл бұрын
Is there a syntax error in 3rd program at 10:48 ? I tried on Python and it is showing error.
@kaustubhgawade9269
@kaustubhgawade9269 3 жыл бұрын
3rd line : global a *= 15 must not be written
@saurabh7955
@saurabh7955 3 жыл бұрын
@@kaustubhgawade9269 thanks for giving answer
@saurabh7955
@saurabh7955 3 жыл бұрын
thanks for asking question
@vashi6156
@vashi6156 3 жыл бұрын
Notes of this lecture??
@utkarshshahi8239
@utkarshshahi8239 3 жыл бұрын
Description me se practice program nhi dikh rha koi.....?
@Akash-mm4lp
@Akash-mm4lp 5 ай бұрын
bhaiya iska pdf kaha hai
@shubhammodi5736
@shubhammodi5736 3 жыл бұрын
Bhaiya lecture ka notes ka link nahi ha
@dhruv5994
@dhruv5994 3 жыл бұрын
15:52 hm is program m elif use nahi kr skte kya????
@srgamingtech1168
@srgamingtech1168 Жыл бұрын
Notes please 😀
@VapTex
@VapTex 4 жыл бұрын
Please release all the lectures
@mindmentor4981
@mindmentor4981 4 жыл бұрын
Thank you so much once again
@PrajwalPPramod
@PrajwalPPramod 4 жыл бұрын
Last program me if elif aana chahiye na sir?
@KGPPKPVLOGS
@KGPPKPVLOGS 8 ай бұрын
Day after tomorrow is my cs board exam how I score good marks I done SQL and networking but remained programming portion 🙏
@rounakkolay6812
@rounakkolay6812 4 жыл бұрын
bhaiya SQL ka kya karu? wo bhi toh syllabus mei hai
@ritusingh-wc3wi
@ritusingh-wc3wi 4 жыл бұрын
13:10 I done this question in a different way. Like this..... def cube(a) : a=int(input()) return a**3 b=2 cube(b). If someone is Intelligent enough, then answer for the same.
@nilesh2341
@nilesh2341 4 жыл бұрын
Kab tak class 12 syllabus complete hoga please reply
@srishtisharmaa
@srishtisharmaa 4 жыл бұрын
Padh to le bhai pehle
@nilesh2341
@nilesh2341 4 жыл бұрын
@@srishtisharmaa bhai pata toh chalega ke iss saal hoga v ke nahi
@abhishekghosh5155
@abhishekghosh5155 3 жыл бұрын
🙏🏻🙏🏻🙏🏻Sir plzz gives the notes of this lecture it's humble request🙏🏻🙏🏻🙏🏻
@kitoo2624
@kitoo2624 4 жыл бұрын
yeh Reduced syllabus pe based hai ????
@unmatched252
@unmatched252 5 ай бұрын
sir jo discription me diye question practice krne bolte hai uski link mujhe nahi mil rhi koi bta do pls
@ashutoshsharma8227
@ashutoshsharma8227 3 жыл бұрын
bhaiya kuch practice question bhi dedo agar possible hai to
@Spride13737
@Spride13737 3 жыл бұрын
notes of this lecture?
@motionkotakipaltan5797
@motionkotakipaltan5797 3 жыл бұрын
Sir print aur return me kya diff hai?
Libraries and Modules in Python | Class 12 Computer Science | Lecture 10
18:21
Apni Kaksha Official
Рет қаралды 285 М.
File Handling in Python | Class 12 Computer Science | Lecture 12
21:57
Apni Kaksha Official
Рет қаралды 774 М.
Lamborghini vs Smoke 😱
00:38
Topper Guild
Рет қаралды 69 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 14 МЛН
Functions🔥One shot Class 12 Computer Science | FREE NOTES🔥
1:15:20
Data Structures & Stack | Python for Class 12 | Computer Science | Lecture 17
17:54
American was shocked by 7 Slavic countries word differences!!
15:29
World Friends
Рет қаралды 968 М.
How To Force Your Brain To DO Hard Things (Lotus Method)
13:44
Statue of Wisdom
Рет қаралды 633 М.
DATABASE AND SQL | Class 12 Python | Computer Science
38:06
Apni Kaksha Official
Рет қаралды 1 МЛН
4. Python Class 11 Revision Tour | Strings, String Functions | Board Exam
17:48
Apni Kaksha Official
Рет қаралды 624 М.
local and Global Scope in Python | Python Tutorials for Beginners #lec78
14:34
Jenny's Lectures CS IT
Рет қаралды 49 М.
Lamborghini vs Smoke 😱
00:38
Topper Guild
Рет қаралды 69 МЛН