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
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!!
@@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.
@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😃
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
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)
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)
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.
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.
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.
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
The LEGB explanation was superb! Thank you!
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
Yeah
but in question it say first we have take input from user
@@Utkarsh_Singh0_0 then do
while(1):
a = int(input('Enter number'))
def cube(a):
b = a*a*a
return(b)
print(cube(a))
Bhaiya December tak Python course complete kra dijiye taaki Jan waale PreBoard mein pura padh k jaa ske.
🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗🤗
Bhai maine to abhi tak kuch nahi padha
@@guruduttapradhan5637 I got 96% 😎 in boards due to cancellation 😂 based on class 11 and preboards 😂
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
Convert into *string
Will SQL covered in the course??
Like to support my query👇
Yes Bro..Bhaiya said it will be ..on Plus..❤️
@@Mallya_exe but it should be in apni kaksha
@@atharvasarva8262 yeah here itself..he just answered the same doubt there.😉
@@Mallya_exe in cs section on unacadmey.??
@@chandrashekharmishra5382 nope iitjee..
Thanks sir...u are doing a great job...but complete the syllabus fast
I am loving these videos, now my concepts are getting clear.
Thank you very much to this beautiful channel.💖💖💖
Hii
When will the notes be uploaded??
notes kaha h
Notes????....boards aa rahe h😭
Abe to bna lo vedio dekh ke
@@mr.clowney1525 abe last mein bola ki "link se question kar loge toh". toh vo link kaha hai?
@@chaitanyamahajan3859 bro pata nai ab toh bhagwan bachaega book ke question laga lo
Sir plzz gives a notes of this lecture it's humble request 🙏🙏🙏🙏
phele bhi 2 videos me nahi the
We need... Notes 😑😑😑😑 giving improvement
Check description waha Google drive pe notes h🙂
@@rumabhattacharya9396 Are ABHAY
@@ayushsahu8856 😎😎
1:28
frr se list n tuple wali video dekhi 😂😂😂😂😂😂😯😯✌️😂
15:50
def qala():
num1=int(input())
num2=int(input())
if num1%10 >num2%10:
print("num2 has smallest ones digit")
if num1%10
1:28 I literally slapped my face thrice 😭😭 😂😂
I hope, u don't need this next time.
@@Raj-mo8kh I hope so too
Did this too
@@coder_rc 😂😂
lol noob!
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!!
sir where can i find the coding practices for the python?
the discription has no link for the practice sheets
Now I can learn Python from here...😄😄as I am a student of class 10...
@kryptex farmy thank you bhaiya..😄😄
@kryptex farmy yes bhaiya..😄
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)
@@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.
@@chandrashekharmishra5382 Yes man, Thanku so much!💯
Yesterday, I came to know about this python course and I have completed all your videos thankyou bhaiya..❤️
@Big Boss hihi
You completed the whole course in a single day. That is something God level.
Where u are now ??
13:28
def cube(num=2):
num=int(input())
print(num*num*num)
cube(num=2)
more perfect way
Num**3
It would be really helpful if you could also tell about how to make class 12 computer project :)
Very nice and helpful explanation....solved all my problems......
12:40 practice time but one thing I noticed first was goku....
Hiii
I FEEL BAD FOR THE 60K STUDENTS WHO SLAPPED THEMSELVES
lol. Not one of them now.
But jab 2 months Pehle dekhi thi for a unit test--- I was one among them 😅😅😅😅
Wdym? Isn't this enough
@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😃
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
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 🥺❤❤❤❤❤❤
me too 🥺🥺
Its a humble request Please upload lectures fast ... many have their pre boards in December ..!!
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
We all Appreciate the hard work you and your team is doing. Without ques we have faith in you 🙏
Legends are watching this video in night for tomorrow exam🗿.
.
like if you are one of them😂
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)
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.
@@chandrashekharmishra5382 thanks man!🔥
I did this question in the same way.
Sir please complete this python syllabus fast please. !! You're the best sir thanks for all these
Thanks harsh bhaiya 😊😊
Maja aa gaya vedio dekh kar 🎊🎊🎊
13:20
def cube(a=2):
return a**3
Print(cube(input('enter a no.')))
Sir last mai practice questions ke ek bhi program ki output nhi ari he
But Explanation was nice 👍
2023 - i m watching one day before exam
Amazing lecture!!😍
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.
Bhai tere bolne pe upload nhi ki hain pehle se hi record rHi hogi tabhi ki hogi n upload
Helping me so much to clear my doubts with a very vivid explanation ! Thanku
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
Thanks aman bhaiya for all these
Ye description me questions kha pr h??? Mujhe dikhte hi nhi
2:44 hassi nikal gayi bhai ki XD
Thankyou bhaiya and team....AB TO PHODENGE
58 thousand students slapped their self after watching this video XD
Cramming a night before exam......
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.
are bhai bhai bhai kmaal ho yaar
9:16
Thanks sir 🙂🙂🙂😇😇😇🙂🙂
7:53 multipliCCT😂😂😂😂😂😂
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.
If we write in the same line, global X = 'delhi', it's gonna give an error
Eat Well
Sleep Well
& Study Well ;)
Thanks bhaiya.
Notes upload krdo plzz....last lecture ke bhi
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.
I hope this channel reaches 1 M subscribers soon
Thanks sir
Thank you so much once again
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
Thank you so much sir 💖
Sirf aap ki wajah se ajj paper fod k aaya
Jitna thank you bolu utna kam hai ☺️
Bhyya practice k lie questions daldo pls description pe
BHAIYA DESCRIPTION PE NA HI QUESTIONS HAI NA HI NOTES, PLS UPLOAD QUICKLY
WE HAVE FULL FAITH IN YOU
rip faith
@@tusharsahu2119 rip
I'm a bio student but came to like and comment. Aman Bhaiya and Co. 🙏🏼
Bio hai toh kya hua maine computer science li hai physical nahi
@@ramdasvimal5592 Mera vaisa combination nahi hai
@@benstokes8376 aapne physical education li hai
@@ramdasvimal5592 Nahi humare yaha sirf Eco , Comp , Bio . 5 sub only
Yess ... bhaiya , question bhi nhi hai or notes ka link bhi nhi hai.... please upload it...🙏🙏 request....
Best video ever
Thku bhaiya ❤️❤️
1:27 ... Me watching how the 15.2Lakh subscribers slapped themselves🙂😂
naah not me :)
@@ashishjoshi911 uh.... Okay..
I don't care🙂
bhai bohot saree lectures ke notes nahi hai please de doo
Sir that's great but upload all videos as soon as possible
1:04 nishant jindal 247👺
Thank You sir for covering the scoping concept. You cleared the doubts I had on scoping thank you once again.
Notes not available
Please release all the lectures
Me after 3 slap ...yaad aa gaya....at 1:23
I literallly standed up and slappded myself 3 timez
*stood up
Aur physics ka ray optics ke notes bhi upload kar dena
14:30
Can we do it even like this?
def digit(a,b):
l1=len(a)
l2=len(b)
if a[l1-1]
No
Bhiya is lecture ke notes....?
Thank you bahiyya 🙏
maza aa gaya
Please 🙏🙏🙏🙏🙏🙏🙏🙏🙏. Cover a syllabus at least last december. Please sirrr
5:40
lwigtti
minecraft sheep farm can be used as an illustrative example
Brother please teach a bit slow..so that we can digest it well..hope u understand(it's very new to us n)
Love you ❤️❤️ so much sir
Thanks for the wonderfull lecture Bhaiya!!!!!!!!!!!!!! bass notes aur daal do
Sir please jldi jldi upload kriye...Lecture plssssss ....Prepared aa gaye hai ...Kripa kriya
2:50
Sir please complete fast....
Nice video bhaiya
bhaiya kuch practice question bhi dedo agar possible hai to
Networking vale ch ki vdeos bhi laoge na sir ??
Thank you so much ❤️
🙏🏻🙏🏻🙏🏻Sir plzz gives the notes of this lecture it's humble request🙏🏻🙏🏻🙏🏻
Source : Sumita Arora python ?
Notes plz
Good job man
Plz complete the syllabus sir ... plz plz plz ... you are doing awesome work 🎃🙏🏻
sir apne bolla ke description mai ques ka link hai but ptani kyu visible nhi horahi
Well goku is so weak in study 😂😂.he can fight with gods for a coupke of weeks but can't study gor an hour
Thaakns sooo much 🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰
Where are the links for notes?..... I'm unable to find them
i also
Sir when will notes come sir
Kab tak late hoga
*Where is the link for practice questions?*